Explorar o código

speed vs readability

sunag %!s(int64=7) %!d(string=hai) anos
pai
achega
43db54b533
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      examples/js/nodes/inputs/FloatNode.js

+ 1 - 1
examples/js/nodes/inputs/FloatNode.js

@@ -33,7 +33,7 @@ THREE.FloatNode.prototype.generateReadonly = function ( builder, output, uuid, t
 
 	var value = this.number;
 
-	return builder.format( ~~value !== value ? value : value + ".0", type, output );
+	return builder.format( Math.floor( value ) !== value ? value : value + ".0", type, output );
 
 };