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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2020-01-31 15:03:15 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2020-01-31 15:03:15 +0300
commit53d805abcbf0a68155025a186d8a3c60de4af374 (patch)
tree1855ef1e13c34af39d2cbc5fe8e3f0c7ee75619d /release/scripts/modules
parent6ab359e525204e476cfa9c772e80d37d3d2c5014 (diff)
parentc82b8c5944d85a24fcb1b6552e970accb4628c9d (diff)
Merge branch 'blender-v2.82-release'
Diffstat (limited to 'release/scripts/modules')
-rw-r--r--release/scripts/modules/sys_info.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/release/scripts/modules/sys_info.py b/release/scripts/modules/sys_info.py
index 8b4e224efe4..656e2b3bd54 100644
--- a/release/scripts/modules/sys_info.py
+++ b/release/scripts/modules/sys_info.py
@@ -172,6 +172,13 @@ def write_sysinfo(filepath):
else:
output.write("Blender was built without Alembic support\n")
+ usd = bpy.app.usd
+ output.write("USD: ")
+ if usd.supported:
+ output.write("%s\n" % usd.version_string)
+ else:
+ output.write("Blender was built without USD support\n")
+
if not bpy.app.build_options.sdl:
output.write("SDL: Blender was built without SDL support\n")