diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-07-19 20:04:06 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-07-19 20:20:28 -0300 |
commit | 9de33e18f14f78165754e97ed0f7827b2e50d560 (patch) | |
tree | 230bc432ee826a283686b7cb90cf872b9f7ec0fd /scene/resources/packed_scene.h | |
parent | 4bf16542720a431599127ec81323822786fa3de2 (diff) | |
download | redot-engine-9de33e18f14f78165754e97ed0f7827b2e50d560.tar.gz |
WIP bugfix for existing connections
Diffstat (limited to 'scene/resources/packed_scene.h')
-rw-r--r-- | scene/resources/packed_scene.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scene/resources/packed_scene.h b/scene/resources/packed_scene.h index 3b6c0898e0..08a5bb237d 100644 --- a/scene/resources/packed_scene.h +++ b/scene/resources/packed_scene.h @@ -163,11 +163,14 @@ public: int get_connection_flags(int p_idx) const; Array get_connection_binds(int p_idx) const; + bool has_connection(int p_node_from, int p_signal, int p_node_to, int p_method) const; + Vector<NodePath> get_editable_instances() const; //build API int add_name(const StringName& p_name); + int find_name(const StringName& p_name) const; int add_value(const Variant& p_value); int add_node_path(const NodePath& p_path); int add_node(int p_parent,int p_owner,int p_type,int p_name, int p_instance); |