|
@@ -322,7 +322,7 @@ GridHelper.prototype.setColors = function () {
|
|
|
SkeletonHelper.prototype.update = function () {
|
|
|
|
|
|
console.error( 'THREE.SkeletonHelper: update() no longer needs to be called.' );
|
|
|
-
|
|
|
+
|
|
|
};
|
|
|
|
|
|
export function WireframeHelper( object, hex ) {
|
|
@@ -1101,6 +1101,20 @@ Object.assign( WebGLRenderer.prototype, {
|
|
|
|
|
|
},
|
|
|
|
|
|
+ getMaxAnisotropy: function () {
|
|
|
+
|
|
|
+ console.warn( 'THREE.WebGLRenderer: .getMaxAnisotropy() is now .capabilities.getMaxAnisotropy().' );
|
|
|
+ return this.capabilities.getMaxAnisotropy();
|
|
|
+
|
|
|
+ },
|
|
|
+
|
|
|
+ getPrecision: function () {
|
|
|
+
|
|
|
+ console.warn( 'THREE.WebGLRenderer: .getPrecision() is now .capabilities.precision.' );
|
|
|
+ return this.capabilities.precision;
|
|
|
+
|
|
|
+ },
|
|
|
+
|
|
|
supportsFloatTextures: function () {
|
|
|
|
|
|
console.warn( 'THREE.WebGLRenderer: .supportsFloatTextures() is now .extensions.get( \'OES_texture_float\' ).' );
|