About Store Forum Documentation Contact



Post Reply 
Clear Terrain Textures
Author Message
Viktor Offline
Member

Post: #1
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
Find all posts by this user Quote this message in a reply
TBJokers Offline
Member

Post: #2
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
Visit this user's website Find all posts by this user Quote this message in a reply
Viktor Offline
Member

Post: #3
RE: Clear Terrain Textures
Thank you very much!
07-10-2013 11:16 PM
Find all posts by this user Quote this message in a reply
Post Reply