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-02-22 00:27:26 +0300
committerJulien Duroure <julien.duroure@gmail.com>2020-02-22 00:27:26 +0300
commit1e5d8bd56d968ae29f7d648b95462aa8c3acecff (patch)
tree24d6c1962e80980b7d4dc05271cdb938869062b0 /io_scene_gltf2/io/com
parent6d119656014a3b9db0bf4a04385928f0d2fd35c5 (diff)
glTF: remove 2.79 on upstream repository
Files are no more computed to remove 2.79 code here, so some little modification on files can be found
Diffstat (limited to 'io_scene_gltf2/io/com')
-rwxr-xr-xio_scene_gltf2/io/com/gltf2_io.py1
-rw-r--r--io_scene_gltf2/io/com/gltf2_io_color_management.py1
-rwxr-xr-xio_scene_gltf2/io/com/gltf2_io_constants.py1
-rwxr-xr-xio_scene_gltf2/io/com/gltf2_io_debug.py1
-rw-r--r--io_scene_gltf2/io/com/gltf2_io_extensions.py1
-rw-r--r--io_scene_gltf2/io/com/gltf2_io_lights_punctual.py1
6 files changed, 0 insertions, 6 deletions
diff --git a/io_scene_gltf2/io/com/gltf2_io.py b/io_scene_gltf2/io/com/gltf2_io.py
index b8c4b9dd..7d70b5fb 100755
--- a/io_scene_gltf2/io/com/gltf2_io.py
+++ b/io_scene_gltf2/io/com/gltf2_io.py
@@ -1220,4 +1220,3 @@ def gltf_from_dict(s):
def gltf_to_dict(x):
return to_class(Gltf, x)
-
diff --git a/io_scene_gltf2/io/com/gltf2_io_color_management.py b/io_scene_gltf2/io/com/gltf2_io_color_management.py
index b1ebdb4a..56b3a246 100644
--- a/io_scene_gltf2/io/com/gltf2_io_color_management.py
+++ b/io_scene_gltf2/io/com/gltf2_io_color_management.py
@@ -34,4 +34,3 @@ def color_linear_to_srgb(c):
return 0.0 if c < 0.0 else c * 12.92
else:
return 1.055 * pow(c, 1.0 / 2.4) - 0.055
-
diff --git a/io_scene_gltf2/io/com/gltf2_io_constants.py b/io_scene_gltf2/io/com/gltf2_io_constants.py
index 9757a2a7..873e004e 100755
--- a/io_scene_gltf2/io/com/gltf2_io_constants.py
+++ b/io_scene_gltf2/io/com/gltf2_io_constants.py
@@ -144,4 +144,3 @@ GLTF_DATA_TYPE_VEC4 = "VEC4"
GLTF_DATA_TYPE_MAT2 = "MAT2"
GLTF_DATA_TYPE_MAT3 = "MAT3"
GLTF_DATA_TYPE_MAT4 = "MAT4"
-
diff --git a/io_scene_gltf2/io/com/gltf2_io_debug.py b/io_scene_gltf2/io/com/gltf2_io_debug.py
index 7cdf864b..51b825a1 100755
--- a/io_scene_gltf2/io/com/gltf2_io_debug.py
+++ b/io_scene_gltf2/io/com/gltf2_io_debug.py
@@ -124,4 +124,3 @@ class Log:
self.hdlr.setFormatter(formatter)
self.logger.addHandler(self.hdlr)
self.logger.setLevel(int(loglevel))
-
diff --git a/io_scene_gltf2/io/com/gltf2_io_extensions.py b/io_scene_gltf2/io/com/gltf2_io_extensions.py
index 2422d205..c807d9e9 100644
--- a/io_scene_gltf2/io/com/gltf2_io_extensions.py
+++ b/io_scene_gltf2/io/com/gltf2_io_extensions.py
@@ -35,4 +35,3 @@ class ChildOfRootExtension(Extension):
"""
self.path = path
super().__init__(name, extension, required)
-
diff --git a/io_scene_gltf2/io/com/gltf2_io_lights_punctual.py b/io_scene_gltf2/io/com/gltf2_io_lights_punctual.py
index 57679d90..b1c48db0 100644
--- a/io_scene_gltf2/io/com/gltf2_io_lights_punctual.py
+++ b/io_scene_gltf2/io/com/gltf2_io_lights_punctual.py
@@ -74,4 +74,3 @@ class Light:
self.extensions)
result["extras"] = self.extras
return result
-