Collection proxies and physics

I’ve been loading collection proxies in my GUI only game, which has been great to get the initial file size down.

Would I be able to do the same in a game using physics? Each collection comes with its own Box2D world, as I understand it, so would I be able to load multiple collections on demand and use their Game Objects with Collision Objects within the same physics world?

Game objects from one loaded collection proxy can’t interact with game objects from another proxy.

You can use collection factories with Load Dynamically checked to get similar benefits as with proxies.

1 Like

To keep the initial load down I use Live Update. Doesn’t Live Update need collection proxies for it to work?

Yes that’s true.

1 Like

Alrighty, all good. I’ll have to think of a way to separate the heavy stuff (atlases) from the physics and load them separately.