mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
[GDNative] Add missing declaration of join method for PoolStringArray class
The class PoolStringArray in GDScript has `join` method, and it even has documentation. However, the corresponding definition of this method in GDNative headers were missing. In this commit, the missing GDNative definition of `join` method has been added. A new CORE API version 1.3 has been added with the new metod `join`.
This commit is contained in:
committed by
Kirill Diduk
parent
6536877117
commit
bf60d655e2
@@ -275,6 +275,8 @@ godot_error GDAPI godot_pool_string_array_insert(godot_pool_string_array *p_self
|
||||
|
||||
void GDAPI godot_pool_string_array_invert(godot_pool_string_array *p_self);
|
||||
|
||||
godot_string GDAPI godot_pool_string_array_join(godot_pool_string_array *p_self, const godot_string *p_delimiter);
|
||||
|
||||
void GDAPI godot_pool_string_array_push_back(godot_pool_string_array *p_self, const godot_string *p_data);
|
||||
|
||||
void GDAPI godot_pool_string_array_remove(godot_pool_string_array *p_self, const godot_int p_idx);
|
||||
|
||||
Reference in New Issue
Block a user