summaryrefslogtreecommitdiffstats
path: root/scene/resources/tile_set.h
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2021-11-12 15:10:54 +0100
committerGitHub <noreply@github.com>2021-11-12 15:10:54 +0100
commit57ae154e864befec34c286cab8f3303d17b55912 (patch)
tree3cdb45433dfc6dbcb0ea30ef1641f2232ce69996 /scene/resources/tile_set.h
parent0cdd18de7849de6e5c47158c672a4a5cfb4f6ea9 (diff)
parentcec004adf08fc57cd1d27408ee5b67637355f2e6 (diff)
downloadredot-engine-57ae154e864befec34c286cab8f3303d17b55912.tar.gz
Merge pull request #53987 from groud/tile_data_inspector_plugin
Diffstat (limited to 'scene/resources/tile_set.h')
-rw-r--r--scene/resources/tile_set.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/scene/resources/tile_set.h b/scene/resources/tile_set.h
index 71559074e7..756d235090 100644
--- a/scene/resources/tile_set.h
+++ b/scene/resources/tile_set.h
@@ -613,6 +613,7 @@ protected:
public:
// Not exposed.
virtual void set_tile_set(const TileSet *p_tile_set) override;
+ const TileSet *get_tile_set() const;
virtual void notify_tile_data_properties_should_change() override;
virtual void add_occlusion_layer(int p_index) override;
virtual void move_occlusion_layer(int p_from_index, int p_to_pos) override;
@@ -766,7 +767,7 @@ private:
};
Vector2 linear_velocity;
- float angular_velocity = 0.0;
+ double angular_velocity = 0.0;
Vector<PolygonShapeTileData> polygons;
};
Vector<PhysicsLayerTileData> physics;