提交 1c24094e 编写于 作者: L Lewy Blue

Swtiched to color.setScalar

上级 a85197f1
......@@ -3903,13 +3903,17 @@
function parseColor( property ) {
var color = new THREE.Color();
if ( property.type === 'Color' ) {
return new THREE.Color( property.value, property.value, property.value );
return color.setScalar( property.value );
}
} else {
return new THREE.Color().fromArray( property.value );
return color.fromArray( property.value );
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册