diff --git a/src/away/materials/passes/SkyBoxPass.ts b/src/away/materials/passes/SkyBoxPass.ts deleted file mode 100644 index 5c1c7ebc..00000000 --- a/src/away/materials/passes/SkyBoxPass.ts +++ /dev/null @@ -1,27 +0,0 @@ -/// - -module away.materials -{ - - /** - * SkyboxPass provides a material pass exclusively used to render sky boxes from a cube texture. - */ - export class SkyboxPass extends MaterialPassBase - { - /** - * Creates a new SkyboxPass object. - * - * @param material The material to which this pass belongs. - */ - constructor() - { - super(); - } - - - public _iIncludeDependencies(shaderObject:ShaderLightingObject) - { - shaderObject.useMipmapping = false; - } - } -}