使用GridHelper我明白网格轴可以是彩色的。但是两个轴都分配了相同的颜色。如何为每个网格轴设置不同的颜色?例如X / Y =红/绿?
答案 0 :(得分:1)
如果有疑问,看看the source code(开源的好事!)总是有帮助的。如您所见,GridHelper不支持每轴不同的颜色!它仅支持中心线和网格的不同颜色。
您可能会发现this demo的源代码非常有用,并且它演示了GridHelper的用法:
var helper = new THREE.GridHelper( 200, 10 );
helper.setColors( 0x0000ff, 0x808080 ); // blue central line, gray grid
helper.position.y = - 150;
scene.add( helper );