glTF: remove no more needed files

This commit is contained in:
Julien Duroure 2020-01-19 17:55:24 +01:00
parent 6238248739
commit 4d2fbf4bb5
2 changed files with 0 additions and 127 deletions

View File

@ -1,78 +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.
import bpy
from io_scene_gltf2.blender.com import gltf2_blender_json
def generate_extras(blender_element):
"""Filter and create a custom property, which is stored in the glTF extra field."""
if not blender_element:
return None
extras = {}
# Custom properties, which are in most cases present and should not be exported.
black_list = ['cycles', 'cycles_visibility', 'cycles_curves', '_RNA_UI']
count = 0
for custom_property in blender_element.keys():
if custom_property in black_list:
continue
value = __to_json_compatible(blender_element[custom_property])
if value is not None:
extras[custom_property] = value
count += 1
if count == 0:
return None
return extras
def __to_json_compatible(value):
"""Make a value (usually a custom property) compatible with json"""
if isinstance(value, bpy.types.ID):
return value
elif isinstance(value, str):
return value
elif isinstance(value, (int, float)):
return value
# for list classes
elif isinstance(value, list):
value = list(value)
# make sure contents are json-compatible too
for index in range(len(value)):
value[index] = __to_json_compatible(value[index])
return value
# for IDPropertyArray classes
elif hasattr(value, "to_list"):
value = value.to_list()
return value
elif hasattr(value, "to_dict"):
value = value.to_dict()
if gltf2_blender_json.is_json_convertible(value):
return value
return None

View File

@ -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)