summaryrefslogtreecommitdiff
path: root/modules/mono/glue/cs_files/Basis.cs
diff options
context:
space:
mode:
authorKelly Thomas <kelly.thomas@hotmail.com.au>2018-08-19 21:27:15 +0800
committerKelly Thomas <kelly.thomas@hotmail.com.au>2018-08-24 07:56:54 +0800
commita94168459004e93a9c9431d29bac04fec3850631 (patch)
tree4c80568934198785fd1b02c625e5ec50d485b8ba /modules/mono/glue/cs_files/Basis.cs
parent8bc9986db4a91a35e8c540b2b3cfbe81b2f2e1e6 (diff)
mono: Quat - add some missing constructors and methods
Diffstat (limited to 'modules/mono/glue/cs_files/Basis.cs')
-rw-r--r--modules/mono/glue/cs_files/Basis.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/glue/cs_files/Basis.cs b/modules/mono/glue/cs_files/Basis.cs
index c280d32c61..10286f3832 100644
--- a/modules/mono/glue/cs_files/Basis.cs
+++ b/modules/mono/glue/cs_files/Basis.cs
@@ -426,7 +426,7 @@ namespace Godot
public Basis(Quat quat)
{
- real_t s = 2.0f / quat.LengthSquared();
+ real_t s = 2.0f / quat.LengthSquared;
real_t xs = quat.x * s;
real_t ys = quat.y * s;