UNPKG

@lightningjs/renderer

Version:
16 lines 693 B
import { IShaderController } from "../../main-api/IShaderController.js"; export class ThreadXMainShaderController extends IShaderController { getProp(propName) { // return (this.node as ThreadXMainNode).coreNode.shaderProps![propName]; return false; } setProp(propName, value) { // (this.node as MainOnlyNode).coreNode.shaderProps![propName] = value; } loadShader() { // const coreNode = (this.node as MainOnlyNode).coreNode; // coreNode.loadShader(this.shType, this.props); // this.defineProps(coreNode.shaderProps as ExtractProps<ShaderMap[keyof ShaderMap]>); } } //# sourceMappingURL=ThreadXMainShaderController.js.map