diff options
author | Ignacio Etcheverry <neikeq@users.noreply.github.com> | 2018-07-27 18:47:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-27 18:47:19 +0200 |
commit | 92c59384ec3ad48dfad0e09f0067193f532cd367 (patch) | |
tree | d9e016e9d0ca15b957b020f0fdcabf15fd3cce09 | |
parent | 6afabc03350f468b253524d600c978ae3aa66e07 (diff) | |
parent | 877ea882ce3a4938c3b73b903e5d6e1e8f970eef (diff) |
Merge pull request #17720 from paulloz/custom-csharp-glue
[mono] Generic Typed GetNode, GetChild, etc.
-rw-r--r-- | modules/mono/glue/cs_files/NodeExtensions.cs | 35 | ||||
-rwxr-xr-x | modules/mono/glue/cs_files/VERSION.txt | 2 |
2 files changed, 36 insertions, 1 deletions
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<T>(NodePath path) where T : Godot.Node + { + return GetNode(path) as T; + } + + public T GetChild<T>(int idx) where T : Godot.Node + { + return (T)GetChild(idx); + } + + public T GetChildOrNull<T>(int idx) where T : Godot.Node + { + return GetChild(idx) as T; + } + + public T GetOwner<T>() where T : Godot.Node + { + return (T)GetOwner(); + } + + public T GetOwnerOrNull<T>() where T : Godot.Node + { + return GetOwner() as T; + } + + public T GetParent<T>() where T : Godot.Node + { + return (T)GetParent(); + } + + public T GetParentOrNull<T>() where T : Godot.Node + { + return GetParent() as T; + } } } diff --git a/modules/mono/glue/cs_files/VERSION.txt b/modules/mono/glue/cs_files/VERSION.txt index 1e8b314962..7f8f011eb7 100755 --- a/modules/mono/glue/cs_files/VERSION.txt +++ b/modules/mono/glue/cs_files/VERSION.txt @@ -1 +1 @@ -6 +7 |