You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/de/bluecolored/bluemap/api/marker/ShapeMarker.java
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,18 @@ public interface ShapeMarker extends Marker {
48
48
* @param height the new height of the shape on the map
49
49
*/
50
50
voidsetShape(Shapeshape, floatheight);
51
+
52
+
/**
53
+
* If the depth-test is disabled, you can see the marker fully through all objects on the map. If it is enabled, you'll only see the border of the marker when it is - for example - under the ground.
54
+
* @return <code>true</code> if the depthTest is enabled
55
+
*/
56
+
booleanisDepthTestEnabled();
57
+
58
+
/**
59
+
* If the depth-test is disabled, you can see the marker fully through all objects on the map. If it is enabled, you'll only see the border of the marker when it is - for example - under the ground.
60
+
* @param enabled if the depth-test should be enabled for this {@link ShapeMarker}
61
+
*/
62
+
voidsetDepthTestEnabled(booleanenabled);
51
63
52
64
/**
53
65
* Getter for the {@link Color} of the border of the shape.
0 commit comments