mirror of
https://github.com/godotengine/godot.git
synced 2025-02-18 00:30:43 +00:00
Merge pull request #92016 from KoBeWi/pick_layers_like_a_boss
Allow selecting TileMapLayers by clicking them
This commit is contained in:
commit
d71c85ce5f
@ -1887,6 +1887,12 @@ void TileMapLayer::_update_self_texture_repeat(RS::CanvasItemTextureRepeat p_tex
|
|||||||
emit_signal(CoreStringName(changed));
|
emit_signal(CoreStringName(changed));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef TOOLS_ENABLED
|
||||||
|
bool TileMapLayer::_edit_is_selected_on_click(const Point2 &p_point, double p_tolerance) const {
|
||||||
|
return get_cell_source_id(local_to_map(p_point)) != TileSet::INVALID_SOURCE;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
void TileMapLayer::set_as_tile_map_internal_node(int p_index) {
|
void TileMapLayer::set_as_tile_map_internal_node(int p_index) {
|
||||||
// Compatibility with TileMap.
|
// Compatibility with TileMap.
|
||||||
ERR_FAIL_NULL(get_parent());
|
ERR_FAIL_NULL(get_parent());
|
||||||
|
@ -393,6 +393,10 @@ protected:
|
|||||||
virtual void _update_self_texture_repeat(RS::CanvasItemTextureRepeat p_texture_repeat) override;
|
virtual void _update_self_texture_repeat(RS::CanvasItemTextureRepeat p_texture_repeat) override;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
#ifdef TOOLS_ENABLED
|
||||||
|
virtual bool _edit_is_selected_on_click(const Point2 &p_point, double p_tolerance) const override;
|
||||||
|
#endif
|
||||||
|
|
||||||
// TileMap node.
|
// TileMap node.
|
||||||
void set_as_tile_map_internal_node(int p_index);
|
void set_as_tile_map_internal_node(int p_index);
|
||||||
int get_index_in_tile_map() const {
|
int get_index_in_tile_map() const {
|
||||||
|
Loading…
Reference in New Issue
Block a user