This commit is contained in:
2026-07-18 16:31:21 -07:00
parent defff993a0
commit 102941b5d2
2 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,7 @@ class SetFirstPersonControllerNode extends LogicNode {
}
override function run(from: Int): Void {
#if lnx_physics
// Control de las var de FirstPersonController...
// Control FirstPersonController var
@ -60,6 +61,7 @@ class SetFirstPersonControllerNode extends LogicNode {
// Alert the user if they do not have the trait assigning to the object.
trace("ERROR: The object '" + object.name + "' does not have the FirstPersonController script assigning(assign it from (Object->add trait->bundle)).");
}
#end
runOutput(0);
}

View File

@ -10,6 +10,7 @@ class SetOverheadPersonControllerNode extends LogicNode {
}
override function run(from: Int): Void {
#if lnx_physics
// Control de las var de OverheadPersonController...
// Control OverheadPersonController var
@ -58,6 +59,7 @@ class SetOverheadPersonControllerNode extends LogicNode {
// Alert the user if they do not have the trait assigning to the object..
trace("ERROR: The object '" + objectTrait.name + "' does not have the OverheadPersonController script assigning(assign it from (Object->add trait->bundle)).");
}
#end
runOutput(0);
}