Repe [T3DU] and Moises Jpelaez updates

This commit is contained in:
2026-05-12 23:54:06 -07:00
parent 6b404f9da6
commit 39091e8db3
147 changed files with 5539 additions and 1750 deletions

View File

@ -4,6 +4,7 @@ class OnUpdateNode(LnxLogicTreeNode):
"""Activates the output on every frame.
@option Update: (default) activates the output every frame.
@option Fixed Update: activates the output at a fixed time step.
@option Late Update: activates the output after all non-late updates are calculated.
@option Physics Pre-Update: activates the output before calculating the physics.
Only available when using a physics engine."""
@ -13,6 +14,7 @@ class OnUpdateNode(LnxLogicTreeNode):
property0: HaxeEnumProperty(
'property0',
items = [('Update', 'Update', 'Update'),
('Fixed Update', 'Fixed Update', 'Fixed Update'),
('Late Update', 'Late Update', 'Late Update'),
('Physics Pre-Update', 'Physics Pre-Update', 'Physics Pre-Update')],
name='On', default='Update')