abdulr 0 Posted January 2, 2019 I was wondering what's the best way to interact with game objects Either using Entity or getGameObjects.closest("Whatever"); I use getGameObjects.closest but it sometimes gets glitchy If you suggest a way can you please post a sample code of how to implement it
Pseudo 179 Posted January 2, 2019 What's glitchy about it? Can you be more specific? GameObject obj = getGameObjects().closest("obj"); Should be fine?
NovaGTX 106 Posted January 3, 2019 I'm guessing he's not using a null check so his "glitch" is trying to access a null'd object. Also, a better method is to incorporate a filter. getGameObjects().closest(rock -> rock != null && rock.hasAction("Mine"));
Recommended Posts
Archived
This topic is now archived and is closed to further replies.