Merge pull request #35708 from MightyPrinny/patch-1

Mono: Fixed GetNodeOrNull<T>
This commit is contained in:
Rémi Verschelde 2020-01-30 16:33:12 +01:00 committed by GitHub
commit 3c3ed67c39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ namespace Godot
public T GetNodeOrNull<T>(NodePath path) where T : class
{
return GetNode(path) as T;
return GetNodeOrNull(path) as T;
}
public T GetChild<T>(int idx) where T : class