Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Duroure <julien.duroure@gmail.com>2020-01-19 19:55:24 +0300
committerJulien Duroure <julien.duroure@gmail.com>2020-01-19 19:55:24 +0300
commit4d2fbf4bb56f6a8af61dc06f116b8779f7efc19a (patch)
tree457b09fd130386d3227037c4fd205f9fd40d97a2 /io_scene_gltf2/blender/imp/gltf2_blender_texture.py
parent6238248739dcf03696f75d724185b21a22520f70 (diff)
glTF: remove no more needed files
Diffstat (limited to 'io_scene_gltf2/blender/imp/gltf2_blender_texture.py')
-rwxr-xr-xio_scene_gltf2/blender/imp/gltf2_blender_texture.py49
1 files changed, 0 insertions, 49 deletions
diff --git a/io_scene_gltf2/blender/imp/gltf2_blender_texture.py b/io_scene_gltf2/blender/imp/gltf2_blender_texture.py
deleted file mode 100755
index fb50a3d1..00000000
--- a/io_scene_gltf2/blender/imp/gltf2_blender_texture.py
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 2018-2019 The glTF-Blender-IO authors.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-from .gltf2_blender_image import BlenderImage
-
-
-class BlenderTextureInfo():
- """Blender Texture info."""
- def __new__(cls, *args, **kwargs):
- raise RuntimeError("%s should not be instantiated" % cls)
-
- @staticmethod
- def create(gltf, pytextureinfo, dict_=False):
- """Create Texture info."""
- extension_text_transform_used = {}
-
- if dict_ is True: # coming from KHR_materials_pbrSpecularGlossiness
- if 'extensions' in pytextureinfo.keys() \
- and 'KHR_texture_transform' in pytextureinfo['extensions'].keys():
- extension_text_transform_used = pytextureinfo['extensions']['KHR_texture_transform']
- BlenderTexture.create(gltf, pytextureinfo['index'], extension_text_transform_used)
- else:
- if pytextureinfo.extensions is not None \
- and 'KHR_texture_transform' in pytextureinfo.extensions.keys():
- extension_text_transform_used = pytextureinfo.extensions['KHR_texture_transform']
- BlenderTexture.create(gltf, pytextureinfo.index, extension_text_transform_used)
-
-class BlenderTexture():
- """Blender Texture."""
- def __new__(cls, *args, **kwargs):
- raise RuntimeError("%s should not be instantiated" % cls)
-
- @staticmethod
- def create(gltf, pytexture_idx, tex_transform):
- """Create texture."""
- pytexture = gltf.data.textures[pytexture_idx]
- BlenderImage.create(gltf, pytexture.source, pytexture_idx, tex_transform)
-