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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Reynish <billrey@me.com>2019-08-12 01:29:30 +0300
committerWilliam Reynish <billrey@me.com>2019-08-12 01:29:30 +0300
commit35f985fcd5bc30806a376ed5145b01c7b1010978 (patch)
tree1e88b2cd382861bbe72910228bcabb92b04a8f21 /source/blender/makesdna
parent2360168b035924fc43737d7fa3e0a8ce7b603bd7 (diff)
Icons: Add support for 3d model file types
OBJ, 3DS, GLTF, FBX, Collada
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_space_types.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h
index 1b1b8fe2cce..3e02a8a647d 100644
--- a/source/blender/makesdna/DNA_space_types.h
+++ b/source/blender/makesdna/DNA_space_types.h
@@ -826,6 +826,10 @@ typedef enum eFileSel_File_Types {
FILE_TYPE_OPERATOR = (1 << 14),
FILE_TYPE_APPLICATIONBUNDLE = (1 << 15),
FILE_TYPE_ALEMBIC = (1 << 16),
+ FILE_TYPE_OBJ = (1 << 17),
+ FILE_TYPE_3DS = (1 << 18),
+ FILE_TYPE_FBX = (1 << 19),
+ FILE_TYPE_GLTF = (1 << 20),
/** An FS directory (i.e. S_ISDIR on its path is true). */
FILE_TYPE_DIR = (1 << 30),