diff options
| author | marynate | 2014-05-22 13:16:53 +0800 |
|---|---|---|
| committer | marynate | 2014-05-22 13:18:33 +0800 |
| commit | 07b16f456020131e1a1c4ac5a37a17c0f61a1143 (patch) | |
| tree | b2180f4844c8d281ab4b354fb0a01faf15e5fd97 /core/variant_call.cpp | |
| parent | 8bb7cc732563a3c23f13e88be92ccb29015fb391 (diff) | |
| download | godot-07b16f456020131e1a1c4ac5a37a17c0f61a1143.tar.gz godot-07b16f456020131e1a1c4ac5a37a17c0f61a1143.tar.zst godot-07b16f456020131e1a1c4ac5a37a17c0f61a1143.zip | |
Diffstat (limited to 'core/variant_call.cpp')
| -rw-r--r-- | core/variant_call.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/variant_call.cpp b/core/variant_call.cpp index 63d0fcec3..c245e01ee 100644 --- a/core/variant_call.cpp +++ b/core/variant_call.cpp @@ -567,6 +567,7 @@ static void _call_##m_type##_##m_method(Variant& r_ret,Variant& p_self,const Var VCALL_PTR0R( Matrix32, affine_inverse ); VCALL_PTR0R( Matrix32, get_rotation ); VCALL_PTR0R( Matrix32, get_origin ); + VCALL_PTR0R( Matrix32, get_scale ); VCALL_PTR0R( Matrix32, orthonormalized ); VCALL_PTR1R( Matrix32, rotated ); VCALL_PTR1R( Matrix32, scaled ); @@ -1377,6 +1378,7 @@ _VariantCall::addfunc(Variant::m_vtype,Variant::m_ret,_SCS(#m_method),VCALL(m_cl ADDFUNC0(MATRIX32,MATRIX32,Matrix32,affine_inverse,varray()); ADDFUNC0(MATRIX32,REAL,Matrix32,get_rotation,varray()); ADDFUNC0(MATRIX32,VECTOR2,Matrix32,get_origin,varray()); + ADDFUNC0(MATRIX32,VECTOR2,Matrix32,get_scale,varray()); ADDFUNC0(MATRIX32,MATRIX32,Matrix32,orthonormalized,varray()); ADDFUNC1(MATRIX32,MATRIX32,Matrix32,rotated,REAL,"phi",varray()); ADDFUNC1(MATRIX32,MATRIX32,Matrix32,scaled,VECTOR2,"scale",varray()); |
