About Store Forum Documentation Contact



Post Reply 
exclude obj from world area streaming
Author Message
xzessmedia Offline
Member

Post: #1
exclude obj from world area streaming
Hello,

is it possible to exclude specific object classes from the area stream system of the world class?
i want to render specific objects all the time (very large objects) but i want to keep the streaming method for all other objs.

thanks for help!
06-26-2013 12:43 AM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #2
RE: exclude obj from world area streaming
Hi,

Yes you can manually process some custom objects.

For example manually draw MeshPtr and manage Actor/PhysBody.

Or you can use the game object classes as well (like Game.Static, etc.) just make a separate game object container not linked with Game.WorldManager:
Memx<Game.Static> custom_statics;
and manually call their draw/update methods
07-01-2013 12:31 PM
Find all posts by this user Quote this message in a reply
xzessmedia Offline
Member

Post: #3
RE: exclude obj from world area streaming
thanks, good to hear that!
i thought i had to abstain to the cool editor features by writing it myself to overide world

so all i have to do is to add a custom container, add all custom objects to it iterate through all objects in the container and call their draw and update?

so in other words, world automatically handles those predefined containers..

i will still be able to subclass the game objects without using world for those specific objects by the way you described?
07-03-2013 07:42 PM
Find all posts by this user Quote this message in a reply
Post Reply