summaryrefslogtreecommitdiff
path: root/modules/gridmap/grid_map.h
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2022-03-02 00:44:30 +0100
committerkobewi <kobewi4e@gmail.com>2022-03-02 00:44:30 +0100
commitcd6bd04cbadbc1d17ba51567e8a0e716419e349b (patch)
tree7e743990f8b6e696bd533be5a277f3ef98ba8ca9 /modules/gridmap/grid_map.h
parent62765fb7ca7cca7ae0c56be99cc99d9b3b0bd040 (diff)
Remove unimplemented set_clip() method
Diffstat (limited to 'modules/gridmap/grid_map.h')
-rw-r--r--modules/gridmap/grid_map.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/modules/gridmap/grid_map.h b/modules/gridmap/grid_map.h
index 83d5af1324..b09cabfe25 100644
--- a/modules/gridmap/grid_map.h
+++ b/modules/gridmap/grid_map.h
@@ -150,14 +150,8 @@ class GridMap : public Node3D {
bool center_z = true;
float cell_scale = 1.0;
- bool clip = false;
- bool clip_above = true;
- int clip_floor = 0;
-
bool recreating_octants = false;
- Vector3::Axis clip_axis = Vector3::AXIS_Z;
-
Ref<MeshLibrary> mesh_library;
Map<OctantKey, Octant *> octant_map;
@@ -260,8 +254,6 @@ public:
Vector3i world_to_map(const Vector3 &p_world_position) const;
Vector3 map_to_world(const Vector3i &p_map_position) const;
- void set_clip(bool p_enabled, bool p_clip_above = true, int p_floor = 0, Vector3::Axis p_axis = Vector3::AXIS_X);
-
void set_cell_scale(float p_scale);
float get_cell_scale() const;