22 lines
376 B
Haxe
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);
|
|
}
|
|
}
|