Skip to content
Snippets Groups Projects
Commit facfa98b authored by Martin Preisler's avatar Martin Preisler Committed by Bastien Montagne
Browse files

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
parent eed6d6cc
No related branches found
No related tags found
No related merge requests found
......@@ -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",
......
......@@ -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():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment