Removed double sided on head of arrow

This commit is contained in:
Thomas FORGIONE 2015-04-29 16:45:11 +02:00
parent cda69b86c6
commit 1038c68190
1 changed files with 3 additions and 3 deletions

View File

@ -43,8 +43,8 @@ var FixedCamera = function(arg1, arg2, arg3, arg4, position, target) {
Tools.sum(this.position, direction)
);
geometry.faces.push(new THREE.Face3(0,1,2), // new THREE.Face3(0,2,1),
new THREE.Face3(0,2,3), // new THREE.Face3(0,3,2)
geometry.faces.push(new THREE.Face3(0,2,1), // new THREE.Face3(0,2,1),
new THREE.Face3(0,3,2), // new THREE.Face3(0,3,2)
new THREE.Face3(4,1,2),
new THREE.Face3(4,0,1),
new THREE.Face3(4,3,0),
@ -57,7 +57,7 @@ var FixedCamera = function(arg1, arg2, arg3, arg4, position, target) {
color : 0xff0000,
transparent : true,
opacity : 0.5,
side: THREE.DoubleSide
side: THREE.FrontSide
});
this.mesh = new THREE.Mesh(geometry, material);