Expose Vector2::clamped() to scripts
Needed this and wondered that there's no built-in function for it. So I wanted to implement it and saw that it's actually already there, just wasn't bound ^^
This commit is contained in:
parent
a2bff72eee
commit
c21412fa7e
1 changed files with 2 additions and 0 deletions
|
@ -346,6 +346,7 @@ static void _call_##m_type##_##m_method(Variant& r_ret,Variant& p_self,const Var
|
|||
VCALL_LOCALMEM0R(Vector2,angle);
|
||||
// VCALL_LOCALMEM1R(Vector2,cross);
|
||||
VCALL_LOCALMEM0R(Vector2,abs);
|
||||
VCALL_LOCALMEM1R(Vector2,clamped);
|
||||
|
||||
VCALL_LOCALMEM0R(Rect2,get_area);
|
||||
VCALL_LOCALMEM1R(Rect2,intersects);
|
||||
|
@ -1457,6 +1458,7 @@ _VariantCall::addfunc(Variant::m_vtype,Variant::m_ret,_SCS(#m_method),VCALL(m_cl
|
|||
ADDFUNC1(VECTOR2,VECTOR2,Vector2,reflect,VECTOR2,"vec",varray());
|
||||
//ADDFUNC1(VECTOR2,REAL,Vector2,cross,VECTOR2,"with",varray());
|
||||
ADDFUNC0(VECTOR2,VECTOR2,Vector2,abs,varray());
|
||||
ADDFUNC1(VECTOR2,VECTOR2,Vector2,clamped,REAL,"length",varray());
|
||||
|
||||
ADDFUNC0(RECT2,REAL,Rect2,get_area,varray());
|
||||
ADDFUNC1(RECT2,BOOL,Rect2,intersects,RECT2,"b",varray());
|
||||
|
|
Loading…
Reference in a new issue