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:
authorCampbell Barton <ideasman42@gmail.com>2015-04-15 17:24:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-04-15 17:24:58 +0300
commitd0628b77f6000e73a86bb61abe02d73df277b664 (patch)
treeded21f308a0ff5ccd76024b35f3cd324c19a6326
parentf63d9de38b7e85ae5f0c93d419b10e7789b6bd3a (diff)
PLY: add missing type: short
-rw-r--r--io_mesh_ply/import_ply.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/io_mesh_ply/import_ply.py b/io_mesh_ply/import_ply.py
index 7d16be1f..76e5ff1e 100644
--- a/io_mesh_ply/import_ply.py
+++ b/io_mesh_ply/import_ply.py
@@ -137,6 +137,7 @@ def read(filepath):
b'uint8': 'B',
b'int16': 'h',
b'uint16': 'H',
+ b'short': 'h',
b'ushort': 'H',
b'int': 'i',
b'int32': 'i',