diff options
author | kobewi <kobewi4e@gmail.com> | 2021-12-09 18:50:57 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2021-12-09 18:50:57 +0100 |
commit | acf563e59f14ed650ee04b4a91731bfd3ad61247 (patch) | |
tree | 5bafee9a702841559bb4b06e0939fe1fba4d7247 /editor/editor_properties.h | |
parent | f0b5cd51b6b2a7e913a084010e3bfca4921db033 (diff) | |
download | redot-engine-acf563e59f14ed650ee04b4a91731bfd3ad61247.tar.gz |
Add drag and drop for NodePaths
Diffstat (limited to 'editor/editor_properties.h')
-rw-r--r-- | editor/editor_properties.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/editor_properties.h b/editor/editor_properties.h index 42ef650adc..0b98e4c7c9 100644 --- a/editor/editor_properties.h +++ b/editor/editor_properties.h @@ -625,6 +625,10 @@ class EditorPropertyNodePath : public EditorProperty { void _node_assign(); void _node_clear(); + bool can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) const; + void drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from); + bool is_drop_valid(const Dictionary &p_drag_data) const; + protected: virtual void _set_read_only(bool p_read_only) override; static void _bind_methods(); |