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:
authorMartin Preisler <mpreisler>2021-09-21 18:29:25 +0300
committerBastien Montagne <bastien@blender.org>2021-09-21 18:32:08 +0300
commitfacfa98b538cc1b60d90a29ce1d6115cb6db2cbb (patch)
tree0912f56888328a7bbac4c6add54e83bebca025f6
parenteed6d6cc132d194efe018996d43a36ebc8d91ad4 (diff)
FBX IO: Disable performance report by default.
Do not spam stdio with timing messages by default, this is more a development/investigation tool than an end-user feature. Reviewed By: campbellbarton, mont29 Differential Revision: https://developer.blender.org/D12477
-rw-r--r--io_scene_fbx/__init__.py2
-rw-r--r--io_scene_fbx/fbx_utils.py3
2 files changed, 3 insertions, 2 deletions
diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py
index 01bc5421..495e62d2 100644
--- a/io_scene_fbx/__init__.py
+++ b/io_scene_fbx/__init__.py
@@ -21,7 +21,7 @@
bl_info = {
"name": "FBX format",
"author": "Campbell Barton, Bastien Montagne, Jens Restemeier",
- "version": (4, 23, 0),
+ "version": (4, 24, 0),
"blender": (2, 90, 0),
"location": "File > Import-Export",
"description": "FBX IO meshes, UV's, vertex colors, materials, textures, cameras, lamps and actions",
diff --git a/io_scene_fbx/fbx_utils.py b/io_scene_fbx/fbx_utils.py
index c35399b2..3a421423 100644
--- a/io_scene_fbx/fbx_utils.py
+++ b/io_scene_fbx/fbx_utils.py
@@ -150,7 +150,8 @@ FBX_FRAMERATES = (
# ##### Misc utilities #####
-DO_PERFMON = True
+# Enable performance reports (measuring time used to perform various steps of importing or exporting).
+DO_PERFMON = False
if DO_PERFMON:
class PerfMon():