mirror of
https://github.com/wahyd4/three.js.git
synced 2026-08-15 07:56:00 +10:00
WebGLRenderer antialias is off by default (considering Firefox doesn't support it...) Formatting clean up here and there
13 lines
166 B
JavaScript
13 lines
166 B
JavaScript
/**
|
|
* @author mr.doob / http://mrdoob.com/
|
|
*/
|
|
|
|
var THREE = THREE || {};
|
|
|
|
if ( ! window.Int32Array ) {
|
|
|
|
window.Int32Array = Array;
|
|
window.Float32Array = Array;
|
|
|
|
}
|