Explorar el Código

Update renderTargetTexture.ts

Trevor Baron hace 6 años
padre
commit
363c3e063c
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/Materials/Textures/renderTargetTexture.ts

+ 2 - 2
src/Materials/Textures/renderTargetTexture.ts

@@ -584,7 +584,7 @@ export class RenderTargetTexture extends Texture {
      */
     public render(useCameraPostProcess: boolean = false, dumpForDebug: boolean = false): void {
         var scene = this.getScene();
-        
+
         if (!scene) {
             return;
         }
@@ -1018,4 +1018,4 @@ export class RenderTargetTexture extends Texture {
 
 Texture._CreateRenderTargetTexture = (name: string, renderTargetSize: number, scene: Scene, generateMipMaps: boolean) => {
     return new RenderTargetTexture(name, renderTargetSize, scene, generateMipMaps);
-};
+};