From 877ea882ce3a4938c3b73b903e5d6e1e8f970eef Mon Sep 17 00:00:00 2001 From: Paul Joannon Date: Tue, 6 Mar 2018 15:39:01 +0100 Subject: Add missing methods to Node class in the mono glue * GetNodeOrNull * GetChild * GetChildOrNull * GetOwner * GetOwnerOrNull * GetParent * GetParentOrNull --- modules/mono/glue/cs_files/NodeExtensions.cs | 35 ++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'modules/mono/glue/cs_files/NodeExtensions.cs') diff --git a/modules/mono/glue/cs_files/NodeExtensions.cs b/modules/mono/glue/cs_files/NodeExtensions.cs index a099b0e400..71534d7782 100644 --- a/modules/mono/glue/cs_files/NodeExtensions.cs +++ b/modules/mono/glue/cs_files/NodeExtensions.cs @@ -6,5 +6,40 @@ namespace Godot { return (T)GetNode(path); } + + public T GetNodeOrNull(NodePath path) where T : Godot.Node + { + return GetNode(path) as T; + } + + public T GetChild(int idx) where T : Godot.Node + { + return (T)GetChild(idx); + } + + public T GetChildOrNull(int idx) where T : Godot.Node + { + return GetChild(idx) as T; + } + + public T GetOwner() where T : Godot.Node + { + return (T)GetOwner(); + } + + public T GetOwnerOrNull() where T : Godot.Node + { + return GetOwner() as T; + } + + public T GetParent() where T : Godot.Node + { + return (T)GetParent(); + } + + public T GetParentOrNull() where T : Godot.Node + { + return GetParent() as T; + } } } -- cgit v1.2.3