創建我創建這樣我想改變立方體的顏色,這是由three.js所
cube = new THREE.Mesh(
new THREE.CubeGeometry(50,20,50),
new THREE.MeshLambertMaterial({color: 0x6699ff})
);
scene.add(cube);
cube.position.set(80,32,40);
立方體,但我想改變立方體的顏色,我該怎麼辦?
任何幫助,將不勝感激。由於
如果您使用Ambient light檢查[this](http://stackoverflow.com/questions/14717135/three-js-ambient-light-unexpected-effect)。 'cube.material.ambient = cube.material.color;'可能有幫助。 – uhura