PoolVector is gone, replaced by Vector
Typed `PoolTypeArray` types are now renamed `PackedTypeArray` and are sugar for `Vector<Type>`.
This commit is contained in:
parent
fb8c93c10b
commit
3205a92ad8
406 changed files with 5314 additions and 8271 deletions
|
|
@ -503,23 +503,23 @@ String BindingsGenerator::bbcode_to_xml(const String &p_bbcode, const TypeInterf
|
|||
xml_output.append("<c>");
|
||||
xml_output.append(tag);
|
||||
xml_output.append("</c>");
|
||||
} else if (tag == "PoolByteArray") {
|
||||
} else if (tag == "PackedByteArray") {
|
||||
xml_output.append("<see cref=\"byte\"/>");
|
||||
} else if (tag == "PoolIntArray") {
|
||||
} else if (tag == "PackedIntArray") {
|
||||
xml_output.append("<see cref=\"int\"/>");
|
||||
} else if (tag == "PoolRealArray") {
|
||||
} else if (tag == "PackedRealArray") {
|
||||
#ifdef REAL_T_IS_DOUBLE
|
||||
xml_output.append("<see cref=\"double\"/>");
|
||||
#else
|
||||
xml_output.append("<see cref=\"float\"/>");
|
||||
#endif
|
||||
} else if (tag == "PoolStringArray") {
|
||||
} else if (tag == "PackedStringArray") {
|
||||
xml_output.append("<see cref=\"string\"/>");
|
||||
} else if (tag == "PoolVector2Array") {
|
||||
} else if (tag == "PackedVector2Array") {
|
||||
xml_output.append("<see cref=\"" BINDINGS_NAMESPACE ".Vector2\"/>");
|
||||
} else if (tag == "PoolVector3Array") {
|
||||
} else if (tag == "PackedVector3Array") {
|
||||
xml_output.append("<see cref=\"" BINDINGS_NAMESPACE ".Vector3\"/>");
|
||||
} else if (tag == "PoolColorArray") {
|
||||
} else if (tag == "PackedColorArray") {
|
||||
xml_output.append("<see cref=\"" BINDINGS_NAMESPACE ".Color\"/>");
|
||||
} else {
|
||||
const TypeInterface *target_itype = _get_type_or_null(TypeReference(tag));
|
||||
|
|
@ -2628,13 +2628,13 @@ bool BindingsGenerator::_arg_default_value_from_variant(const Variant &p_val, Ar
|
|||
r_iarg.default_argument = "null";
|
||||
break;
|
||||
case Variant::ARRAY:
|
||||
case Variant::POOL_BYTE_ARRAY:
|
||||
case Variant::POOL_INT_ARRAY:
|
||||
case Variant::POOL_REAL_ARRAY:
|
||||
case Variant::POOL_STRING_ARRAY:
|
||||
case Variant::POOL_VECTOR2_ARRAY:
|
||||
case Variant::POOL_VECTOR3_ARRAY:
|
||||
case Variant::POOL_COLOR_ARRAY:
|
||||
case Variant::PACKED_BYTE_ARRAY:
|
||||
case Variant::PACKED_INT_ARRAY:
|
||||
case Variant::PACKED_REAL_ARRAY:
|
||||
case Variant::PACKED_STRING_ARRAY:
|
||||
case Variant::PACKED_VECTOR2_ARRAY:
|
||||
case Variant::PACKED_VECTOR3_ARRAY:
|
||||
case Variant::PACKED_COLOR_ARRAY:
|
||||
r_iarg.default_argument = "new %s {}";
|
||||
r_iarg.def_param_mode = ArgumentInterface::NULLABLE_REF;
|
||||
break;
|
||||
|
|
@ -2914,20 +2914,20 @@ void BindingsGenerator::_populate_builtin_type_interfaces() {
|
|||
|
||||
#define INSERT_ARRAY(m_type, m_proxy_t) INSERT_ARRAY_FULL(m_type, m_type, m_proxy_t)
|
||||
|
||||
INSERT_ARRAY(PoolIntArray, int);
|
||||
INSERT_ARRAY_FULL(PoolByteArray, PoolByteArray, byte);
|
||||
INSERT_ARRAY(PackedIntArray, int);
|
||||
INSERT_ARRAY_FULL(PackedByteArray, PackedByteArray, byte);
|
||||
|
||||
#ifdef REAL_T_IS_DOUBLE
|
||||
INSERT_ARRAY(PoolRealArray, double);
|
||||
INSERT_ARRAY(PackedRealArray, double);
|
||||
#else
|
||||
INSERT_ARRAY(PoolRealArray, float);
|
||||
INSERT_ARRAY(PackedRealArray, float);
|
||||
#endif
|
||||
|
||||
INSERT_ARRAY(PoolStringArray, string);
|
||||
INSERT_ARRAY(PackedStringArray, string);
|
||||
|
||||
INSERT_ARRAY(PoolColorArray, Color);
|
||||
INSERT_ARRAY(PoolVector2Array, Vector2);
|
||||
INSERT_ARRAY(PoolVector3Array, Vector3);
|
||||
INSERT_ARRAY(PackedColorArray, Color);
|
||||
INSERT_ARRAY(PackedVector2Array, Vector2);
|
||||
INSERT_ARRAY(PackedVector3Array, Vector3);
|
||||
|
||||
#undef INSERT_ARRAY
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue