浏览代码

fix vector size rgba

Nicolas Cannasse 2 月之前
父节点
当前提交
4665f008c7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      hrt/shgraph/ShaderGraph.hx

+ 1 - 1
hrt/shgraph/ShaderGraph.hx

@@ -674,7 +674,7 @@ class ShaderGraph extends hrt.prefab.Prefab {
 					var t = hrt.impl.TextureType.Utils.getTextureFromValue(value, Repeat);
 					shader.setParamValue(variable, t);
 				case TVec(size, _):
-					shader.setParamValue(variable, h3d.Vector.fromArray(value));
+					shader.setParamValue(variable, size == 4 ? h3d.Vector4.fromArray(value) : h3d.Vector.fromArray(value));
 				default:
 					shader.setParamValue(variable, value);
 			}