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
* This class represents a map that is rendered by BlueMap of a specific world ({@link BlueMapWorld}).
37
38
* Each map belongs to a map configured in BlueMap's configuration file (in the <code>maps: []</code> list).
38
39
*/
40
+
@SuppressWarnings("unused")
39
41
publicinterfaceBlueMapMap {
40
42
41
43
/**
@@ -91,6 +93,7 @@ public interface BlueMapMap {
91
93
* <p>Any previously set filters will get overwritten with the new one. You can get the current filter using {@link #getTileFilter()} and combine them if you wish.</p>
92
94
* @param filter The filter that will be used from now on.
93
95
*/
96
+
@ApiStatus.Experimental
94
97
voidsetTileFilter(Predicate<Vector2i> filter);
95
98
96
99
/**
@@ -109,6 +112,7 @@ public interface BlueMapMap {
109
112
/**
110
113
* Returns the currently set TileFilter. The default TileFilter is equivalent to <code>t -> true</code>.
0 commit comments