Files
LNXSDK/leenkx/Sources/leenkx/logicnode/SetSpotLightBlendNode.hx
2025-01-22 16:18:30 +01:00

22 lines
376 B
Haxe

package leenkx.logicnode;
import iron.object.LightObject;
class SetSpotLightBlendNode extends LogicNode {
public function new(tree: LogicTree) {
super(tree);
}
override function run(from: Int) {
var light: LightObject = inputs[1].get();
var blend: Float = inputs[2].get();
if (light == null) return;
light.data.raw.spot_blend = blend;
runOutput(0);
}
}