Comment on page
How to add GeoRenderLayers
To add GeoRenderLayers to any of AzureLib Geo renders, simply add them like so:
public class ExampleRenderer extends GeoEntityRenderer<ExampleEntity> {
public ExampleRenderer(EntityRendererProvider.Context context) {
super(context, new ExampleModel());
// Add the glow layer
addRenderLayer(new AutoGlowingGeoLayer<>(this));
}
}
Last modified 1mo ago