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 { override function run(from: Int): Void {
#if lnx_physics
// Control de las var de FirstPersonController... // Control de las var de FirstPersonController...
// Control FirstPersonController var // 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. // 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))."); trace("ERROR: The object '" + object.name + "' does not have the FirstPersonController script assigning(assign it from (Object->add trait->bundle)).");
} }
#end
runOutput(0); runOutput(0);
} }

View File

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