armory/Sources/armory/logicnode/LenstextureSetNode.hx
Alexander 60f72e7e0e Merge in PPM
Redone and ready to be merged with Armory
2020-03-04 17:45:19 +01:00

20 lines
582 B
Haxe

package armory.logicnode;
class LenstextureSetNode extends LogicNode {
public function new(tree:LogicTree) {
super(tree);
}
override function run(from:Int) {
armory.renderpath.Postprocess.lenstexture_uniforms[0] = inputs[1].get();
armory.renderpath.Postprocess.lenstexture_uniforms[1] = inputs[2].get();
armory.renderpath.Postprocess.lenstexture_uniforms[2] = inputs[3].get();
armory.renderpath.Postprocess.lenstexture_uniforms[3] = inputs[4].get();
armory.renderpath.Postprocess.lenstexture_uniforms[4] = inputs[5].get();
runOutput(0);
}
}