How do you check the size (not scale) of an object?

Hello,

I am currently in the process of optimizing my game, and decided that it is perfect for pooling. What I am trying to determine is whether or not to create the pool(list) at the start of the application or once the game starts (my game runs on one scene).

The game does have different modes, and it uses different enemies/other game related objects depending on the mode.

Long story short, I was wondering if there is a way to see how much memory an object uses when it is in the game but is inactive?

Thanks!

What do you mean by “inactive”?

If you mean in the scene but has render disabled then it takes the same amount of main memory as when it is rendering.
You can discover what this is if you have Unity Pro by using the profiler.

If you mean just an asset and not loaded into the scene, the answer is 0.