Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Resolved GameObjects.getLoaded() range

Joined
Nov 7, 2015
Messages
31
In what range will I get the objects if I use GameObjects.getLoaded()?
like 100x100?
 
Java Warlord
Joined
Nov 17, 2014
Messages
4,906
Not 100% sure if all objects in the loaded region are loaded (Npcs for example get loaded in a 16x16 area), but judging by your estimation, it should be 104x104, which is the size of one region.
 
Joined
Dec 10, 2014
Messages
3,332
In what range will I get the objects if I use GameObjects.getLoaded()?
like 100x100?
For GameObjects it will be your loaded region, which as @Savior said, is 104x104. It's important to not that this area is not necessarily centred on your character, so a GameObject 20 coordinates away from you may not be loaded, as it's in another region.
 
Top