You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tmp=f"[b]Note:[/b] The returned array is [i]copied[/i] and any changes to it will not update the original property value. See [{property_def.type_name.type_name}] for more details."
copy_note=f"[b]Note:[/b] The returned array is [i]copied[/i] and any changes to it will not update the original property value. See [{property_def.type_name.type_name}] for more details."
// Add copy note to built-in properties returning Packed*Array.
2224
-
if (!cd.is_script_doc && packed_array_types.has(prop.type)) {
2225
-
class_desc->add_newline();
2226
-
class_desc->add_newline();
2227
-
_add_text(vformat(TTR("[b]Note:[/b] The returned array is [i]copied[/i] and any changes to it will not update the original property value. See [%s] for more details."), prop.type));
// Add copy note to built-in properties returning `Packed*Array`.
2257
+
if (!cd.is_script_doc && packed_array_types.has(prop.type)) {
2258
+
class_desc->add_newline();
2259
+
class_desc->add_newline();
2260
+
_add_text(vformat(TTR("[b]Note:[/b] The returned array is [i]copied[/i] and any changes to it will not update the original property value. See [%s] for more details."), prop.type));
0 commit comments