Viktor
Member
|
Clear Terrain Textures
Hello,
We're trying to find a way to reduce the memory footprint of our server application and want to unload terrain textures. If this is not possible, is there a way to only load very low detail mip maps into memory?
|
|
07-10-2013 10:55 PM |
|
TBJokers
Member
|
RE: Clear Terrain Textures
You can use the CACHE dummies to avoid loading client data. ->
Skeletons .mode(CACHE_DUMMY_NULL);
Animations.mode(CACHE_DUMMY_NULL);
Images .mode(CACHE_DUMMY_NULL);
Materials .mode(CACHE_DUMMY_NULL);
Meshes .mode(CACHE_DUMMY_NULL);
PhysBodies.mode(CACHE_DUMMY_NULL);
|
|
07-10-2013 11:05 PM |
|
Viktor
Member
|
RE: Clear Terrain Textures
Thank you very much!
|
|
07-10-2013 11:16 PM |
|