diff options
| author | AlexHolly | 2017-02-23 19:41:10 +0100 |
|---|---|---|
| committer | AlexHolly | 2017-03-01 16:30:34 +0100 |
| commit | 9f7ce79ea37777997b3c7988dbbdfb2cc4b4597d (patch) | |
| tree | a6327226aeda80336748c446979566f781591dd7 /core/variant_call.cpp | |
| parent | 46b22674989709a145b89c73cd18be06592c46f9 (diff) | |
| download | godot-9f7ce79ea37777997b3c7988dbbdfb2cc4b4597d.tar.gz godot-9f7ce79ea37777997b3c7988dbbdfb2cc4b4597d.tar.zst godot-9f7ce79ea37777997b3c7988dbbdfb2cc4b4597d.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 b75dfe73e..376e646fc 100644 --- a/core/variant_call.cpp +++ b/core/variant_call.cpp @@ -564,6 +564,7 @@ static void _call_##m_type##_##m_method(Variant& r_ret,Variant& p_self,const Var VCALL_LOCALMEM1(PoolStringArray,append); VCALL_LOCALMEM1(PoolStringArray,append_array); VCALL_LOCALMEM0(PoolStringArray,invert); + VCALL_LOCALMEM1R(PoolStringArray,join); VCALL_LOCALMEM0R(PoolVector2Array,size); VCALL_LOCALMEM2(PoolVector2Array,set); @@ -1637,6 +1638,7 @@ _VariantCall::addfunc(Variant::m_vtype,Variant::m_ret,_scs_create(#m_method),VCA ADDFUNC2(POOL_STRING_ARRAY,INT,PoolStringArray,insert,INT,"idx",STRING,"string",varray()); ADDFUNC1(POOL_STRING_ARRAY,NIL,PoolStringArray,resize,INT,"idx",varray()); ADDFUNC0(POOL_STRING_ARRAY,NIL,PoolStringArray,invert,varray()); + ADDFUNC1(POOL_STRING_ARRAY,STRING,PoolStringArray,join,STRING,"string",varray()); ADDFUNC0(POOL_VECTOR2_ARRAY,INT,PoolVector2Array,size,varray()); ADDFUNC2(POOL_VECTOR2_ARRAY,NIL,PoolVector2Array,set,INT,"idx",VECTOR2,"vector2",varray()); |
