User Tag List

Results 1 to 3 of 3

Thread: How to do to make MMF2 use more mb ?

  1. #1


    Join Date
    Jul 2011
    Posts
    45
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    How to do to make MMF2 use more mb ?

    I did a game with world generator and it uses +600 objects
    and it only uses 6 mb for the game
    I want to do to make the game use more like 1 GB because it keeps lagging please help

  2. #2
    Clicker Multimedia Fusion 2SWF Export Module

    Join Date
    Sep 2006
    Posts
    1,544
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)

    Re: How to do to make MMF2 use more mb ?

    MMF2 will dynamically allocate memory as needed, and always uses as much as is needed and does its own garbage collection. You could allocate more memory, but it wouldn't have any effect at all on performance. You're likely experiencing 'lagging' due to graphical processing; 600 copies of the same object will take up very little memory (only their internal values need unique storage; graphics are shared), but rendering them graphically will put a big strain on your computer. In Standard display mode MMF2, graphics are done by your CPU (computer processor), which handles all your software, code, etc, and is inefficient and slow at graphics. Drawing 600 objects at a time will likely slow it down. When you use Direct3d 9 mode (HWA) MMF2, the graphics will be drawn by your GPU (graphics card) instead, which can handle much more graphics without any slowdown than your CPU.

  3. #3


    Join Date
    Jul 2011
    Posts
    45
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to do to make MMF2 use more mb ?

    Ok thx

Similar Threads

  1. Best way to make a HUD in MMF2
    By YeOldeLuke in forum Multimedia Fusion 2 - Technical Support
    Replies: 8
    Last Post: 21st November 2014, 07:28 AM
  2. Can you make NES games with MMF2/MMF2 Dev?
    By denzillah in forum Multimedia Fusion 2 - Technical Support
    Replies: 8
    Last Post: 11th June 2013, 07:35 AM
  3. Possible for MMF2 to make a Web Browser?
    By Eliyahu in forum Multimedia Fusion 2 - Technical Support
    Replies: 5
    Last Post: 1st March 2009, 07:16 AM
  4. How do I make a Wii game in MMF2?
    By Slinkington in forum Multimedia Fusion 2 - Technical Support
    Replies: 13
    Last Post: 8th May 2008, 10:49 PM
  5. How do I make AI for MMF2!!?
    By cosmicco in forum Multimedia Fusion 2 - Technical Support
    Replies: 7
    Last Post: 21st October 2007, 08:28 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •