summaryrefslogtreecommitdiffstats
path: root/scene/resources/packed_scene.h
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2016-07-19 20:04:06 -0300
committerJuan Linietsky <reduzio@gmail.com>2016-07-19 20:20:28 -0300
commit9de33e18f14f78165754e97ed0f7827b2e50d560 (patch)
tree230bc432ee826a283686b7cb90cf872b9f7ec0fd /scene/resources/packed_scene.h
parent4bf16542720a431599127ec81323822786fa3de2 (diff)
downloadredot-engine-9de33e18f14f78165754e97ed0f7827b2e50d560.tar.gz
WIP bugfix for existing connections
Diffstat (limited to 'scene/resources/packed_scene.h')
-rw-r--r--scene/resources/packed_scene.h3
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);