소스 검색

NodeBuilder: Get real color type (#26524)

sunag 2 년 전
부모
커밋
32276efec7
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      examples/jsm/nodes/core/NodeBuilder.js

+ 3 - 1
examples/jsm/nodes/core/NodeBuilder.js

@@ -331,6 +331,8 @@ class NodeBuilder {
 
 	getType( type ) {
 
+		if ( type === 'color' ) return 'vec3';
+
 		return type;
 
 	}
@@ -812,7 +814,7 @@ class NodeBuilder {
 
 	getVar( type, name ) {
 
-		return `${type} ${name}`;
+		return `${ this.getType( type ) } ${ name }`;
 
 	}