mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 08:23:29 +00:00
Renamed fixed_process to physics_process
This commit is contained in:
parent
4f39ce32b9
commit
4537977d6d
75 changed files with 296 additions and 296 deletions
|
@ -2008,8 +2008,8 @@ void VisualScriptInstance::create(const Ref<VisualScript> &p_script, Object *p_o
|
|||
Node *node = Object::cast_to<Node>(p_owner);
|
||||
if (p_script->functions.has("_process"))
|
||||
node->set_process(true);
|
||||
if (p_script->functions.has("_fixed_process"))
|
||||
node->set_fixed_process(true);
|
||||
if (p_script->functions.has("_physics_process"))
|
||||
node->set_physics_process(true);
|
||||
if (p_script->functions.has("_input"))
|
||||
node->set_process_input(true);
|
||||
if (p_script->functions.has("_unhandled_input"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue