Merge pull request #27686 from ForLoveOfCats/master
Mono: Make GD.Convert take Variant.Type instead of int
This commit is contained in:
commit
21da74b514
1 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@ namespace Godot
|
|||
return godot_icall_GD_bytes2var(bytes, allow_objects);
|
||||
}
|
||||
|
||||
public static object Convert(object what, int type)
|
||||
public static object Convert(object what, Variant.Type type)
|
||||
{
|
||||
return godot_icall_GD_convert(what, type);
|
||||
}
|
||||
|
@ -200,7 +200,7 @@ namespace Godot
|
|||
internal extern static object godot_icall_GD_bytes2var(byte[] bytes, bool allow_objects);
|
||||
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
internal extern static object godot_icall_GD_convert(object what, int type);
|
||||
internal extern static object godot_icall_GD_convert(object what, Variant.Type type);
|
||||
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
internal extern static int godot_icall_GD_hash(object var);
|
||||
|
|
Loading…
Reference in a new issue