-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
88 lines (68 loc) · 2.85 KB
/
__init__.py
File metadata and controls
88 lines (68 loc) · 2.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
bl_info = {
"name":"Screenshot Saver",
"author":"Ethan Simon-Law",
"location": "3D View -> Sidebar -> Screenshot Saver",
"description": "A tool for taking screenshots when you save",
"version":(0, 1),
"blender":(3, 1, 2),
"tracker_url": "https://discord.com/invite/wHAyVZG",
"category": "3D View"
}
import importlib, bpy, time
from .operators import display_error_message
################################################################################################################
# HANDLERS
################################################################################################################
old_time = 0
@bpy.app.handlers.persistent
def screenshot_save_handler(scene) -> None:
'''Handles saving screenshots whenever the file is saved'''
global old_time
scene = bpy.context.scene
if scene.screenshot_saver.record_on_save:
if not len(scene.scrshot_camera_coll):
display_error_message(message='Could not render because no screenshot cameras exist.') # Send this before saving
return None
# Render buffer when saving more than one time every 30 seconds
if time.time() - old_time > 30:
bpy.ops.scrshot.render_screenshots(render_type='enabled')
old_time = time.time()
################################################################################################################
# REGISTRATION
################################################################################################################
module_names = (
"ui",
"operators",
"properties"
)
modules = []
for module_name in module_names:
if module_name in locals():
modules.append(importlib.reload(locals()[module_name]))
else:
modules.append(importlib.import_module("." + module_name, package=__package__))
def register():
for mod in modules:
mod.register()
bpy.app.handlers.save_post.append(screenshot_save_handler)
def unregister():
for mod in modules:
mod.unregister()
bpy.app.handlers.save_post.remove(screenshot_save_handler)
# ##### BEGIN GPL LICENSE BLOCK #####
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####