diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-06-29 11:50:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-29 11:50:36 +0200 |
commit | 51f9b41afde012e34a50d6ee82b77c40c3a93ee1 (patch) | |
tree | e6676e49b20c21456a910cd2cab2d5819f90dd73 /editor/plugins/tiles/tile_set_editor.h | |
parent | 45b66e91e73eff0f556ef36264d36f49b0089a89 (diff) | |
parent | 30a615dd94f2dc990466f3953ad26a0e3f79a170 (diff) |
Merge pull request #49859 from groud/painting_in_tileset_editor
Properties painting in tileset editor
Diffstat (limited to 'editor/plugins/tiles/tile_set_editor.h')
-rw-r--r-- | editor/plugins/tiles/tile_set_editor.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/editor/plugins/tiles/tile_set_editor.h b/editor/plugins/tiles/tile_set_editor.h index f584c043cc..9e50aca62f 100644 --- a/editor/plugins/tiles/tile_set_editor.h +++ b/editor/plugins/tiles/tile_set_editor.h @@ -33,7 +33,6 @@ #include "scene/gui/box_container.h" #include "scene/resources/tile_set.h" -#include "tile_data_editors.h" #include "tile_set_atlas_source_editor.h" #include "tile_set_scenes_collection_source_editor.h" @@ -54,16 +53,6 @@ private: void _update_atlas_sources_list(int force_selected_id = -1); - // List of tile data editors. - TileDataTextureOffsetEditor *tile_data_texture_offset_editor = memnew(TileDataTextureOffsetEditor); - TileDataYSortEditor *tile_data_y_sort_editor = memnew(TileDataYSortEditor); - TileDataIntegerEditor *tile_data_integer_editor = memnew(TileDataIntegerEditor); - TileDataFloatEditor *tile_data_float_editor = memnew(TileDataFloatEditor); - TileDataOcclusionShapeEditor *tile_data_occlusion_shape_editor = memnew(TileDataOcclusionShapeEditor); - TileDataCollisionShapeEditor *tile_data_collision_shape_editor = memnew(TileDataCollisionShapeEditor); - TileDataTerrainsEditor *tile_data_terrains_editor = memnew(TileDataTerrainsEditor); - TileDataNavigationPolygonEditor *tile_data_navigation_polygon_editor = memnew(TileDataNavigationPolygonEditor); - // -- Sources management -- Button *sources_delete_button; MenuButton *sources_add_button; @@ -84,7 +73,6 @@ protected: public: _FORCE_INLINE_ static TileSetEditor *get_singleton() { return singleton; } - TileDataEditor *get_tile_data_editor(String property); void edit(Ref<TileSet> p_tile_set); void drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from); bool can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) const; |