You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Fix C# API assembly build errors in generics
This commit is contained in:
@@ -4,7 +4,7 @@ namespace Godot
|
||||
{
|
||||
public T GetNode<T>(NodePath path) where T : class
|
||||
{
|
||||
return (T)GetNode(path);
|
||||
return (T)(object)GetNode(path);
|
||||
}
|
||||
|
||||
public T GetNodeOrNull<T>(NodePath path) where T : class
|
||||
@@ -14,7 +14,7 @@ namespace Godot
|
||||
|
||||
public T GetChild<T>(int idx) where T : class
|
||||
{
|
||||
return (T)GetChild(idx);
|
||||
return (T)(object)GetChild(idx);
|
||||
}
|
||||
|
||||
public T GetChildOrNull<T>(int idx) where T : class
|
||||
@@ -24,7 +24,7 @@ namespace Godot
|
||||
|
||||
public T GetOwner<T>() where T : class
|
||||
{
|
||||
return (T)GetOwner();
|
||||
return (T)(object)GetOwner();
|
||||
}
|
||||
|
||||
public T GetOwnerOrNull<T>() where T : class
|
||||
@@ -34,7 +34,7 @@ namespace Godot
|
||||
|
||||
public T GetParent<T>() where T : class
|
||||
{
|
||||
return (T)GetParent();
|
||||
return (T)(object)GetParent();
|
||||
}
|
||||
|
||||
public T GetParentOrNull<T>() where T : class
|
||||
|
||||
Reference in New Issue
Block a user