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
//This is an old component, verify is a script component.
1063
-
ERR_FAIL_COND_V_MSG(components_info[id].dynamic_component_info == nullptr, godex::COMPONENT_NONE, "This component " + p_name + " is not a script component and can't be updated. Your component must be an unique name.");
1064
-
info = components_info[id].dynamic_component_info;
1097
+
1098
+
//Add a new scripting constant, for fast and easy `component` access.
godex::component_id id = register_or_get_id_for_component_name(p_name);
1112
+
DynamicComponentInfo *info;
1113
+
ERR_FAIL_COND_V_MSG(components_info[id].dynamic_component_info == nullptr, godex::COMPONENT_NONE, "This component " + p_name + " is not a script component and can't be updated. Your component must be an unique name.");
1114
+
info = components_info[id].dynamic_component_info;
0 commit comments