Dec 31st 2017 #1 Could somneoen post an example on hopw to use WorldArea?i have no idea on to do make the Box Appeaer
Dec 31st 2017 #2 Basically the WorldArea should work like all other WorldElements (e.g. World3DModel). It is used to visualize an Area object.Example code: Java //create an Area object Area area = new Area(...); //create a WorldArea which visualizes the Area object WorldArea worldArea = new WorldArea(area); //optionally change some settings worldArea.setAlwaysVisible(false); worldArea.setColor(0xFF0000AA); //RGBA hex code //attach the WorldArea object to a player player.addWorldElement(worldArea); Display More