Represents a 3D overlay item in the game world.
Use the builder method to create instances with a fluent API.
Example
// Create a 3D overlay highlighting an NPC with text constoverlay = OverlayItem3D.builder() .addNpcByIndex(5) .highlightTile("red") .addText("Target NPC") .build();
Represents a 3D overlay item in the game world. Use the builder method to create instances with a fluent API.
Example