diff options
author | Ricardo Alcantara <alcantarafox@yahoo.com.br> | 2020-09-24 00:59:54 -0300 |
---|---|---|
committer | Ricardo Alcantara <alcantarafox@yahoo.com.br> | 2020-09-24 00:59:54 -0300 |
commit | a676b8ea66d41cf5aebfa04d4f1239203b031c8f (patch) | |
tree | 6f9021fdc646bc35e4e0d4d8ca68c0fc86bb11a4 /modules/mono/glue | |
parent | e40ba13e59331efe6917b855a9248e2c77b09177 (diff) |
Basis RotationQuat should be public.
Diffstat (limited to 'modules/mono/glue')
-rw-r--r-- | modules/mono/glue/GodotSharp/GodotSharp/Core/Basis.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/Basis.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/Basis.cs index 5aba31c622..3f1120575f 100644 --- a/modules/mono/glue/GodotSharp/GodotSharp/Core/Basis.cs +++ b/modules/mono/glue/GodotSharp/GodotSharp/Core/Basis.cs @@ -207,7 +207,7 @@ namespace Godot } } - internal Quat RotationQuat() + public Quat RotationQuat() { Basis orthonormalizedBasis = Orthonormalized(); real_t det = orthonormalizedBasis.Determinant(); |