Add on_scene handler (load post and frame_change)
This commit is contained in:
parent
1273ab83ef
commit
e194139ddb
@ -14,8 +14,9 @@
|
|||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
import bpy
|
import bpy
|
||||||
from .sw.funcs import select_all, workspace_menu, assign_shortcuts, remove_shortcuts
|
from bpy.app.handlers import persistent
|
||||||
from .sw.ops import SW_OT_workspace, SW_OT_link_workspace, SW_OT_move, SW_OT_link_all, SW_OT_remove, SW_OT_switch, SW_OT_rename, SW_OT_copy_from_scene, SW_OT_activate
|
from .sw.funcs import select_all, workspace_menu, assign_shortcuts, remove_shortcuts, has_data
|
||||||
|
from .sw.ops import SW_OT_workspace, SW_OT_link_workspace, SW_OT_move, SW_OT_link_all, SW_OT_remove, SW_OT_switch, SW_OT_rename, SW_OT_copy_from_scene, SW_OT_activate, SW_OT_select
|
||||||
from .sw.topbar import TOPBAR_HT_upper_bar
|
from .sw.topbar import TOPBAR_HT_upper_bar
|
||||||
from .sw.panel import SW_PT_select_scene_workspaces
|
from .sw.panel import SW_PT_select_scene_workspaces
|
||||||
from .sw.menu import SW_MT_missing_workspaces, SW_MT_copy_from
|
from .sw.menu import SW_MT_missing_workspaces, SW_MT_copy_from
|
||||||
@ -34,6 +35,7 @@ bl_info = {
|
|||||||
|
|
||||||
classes = [
|
classes = [
|
||||||
SW_OT_workspace,
|
SW_OT_workspace,
|
||||||
|
SW_OT_select,
|
||||||
SW_OT_switch,
|
SW_OT_switch,
|
||||||
SW_OT_move,
|
SW_OT_move,
|
||||||
SW_OT_remove,
|
SW_OT_remove,
|
||||||
@ -49,6 +51,12 @@ classes = [
|
|||||||
TOPBAR_HT_upper_bar
|
TOPBAR_HT_upper_bar
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@persistent
|
||||||
|
def on_scene(scene):
|
||||||
|
if not has_data():
|
||||||
|
select_all()
|
||||||
|
|
||||||
og_header = None;
|
og_header = None;
|
||||||
|
|
||||||
def register():
|
def register():
|
||||||
@ -57,7 +65,8 @@ def register():
|
|||||||
for c in classes:
|
for c in classes:
|
||||||
bpy.utils.register_class(c)
|
bpy.utils.register_class(c)
|
||||||
bpy.types.TOPBAR_MT_workspace_menu.prepend(workspace_menu)
|
bpy.types.TOPBAR_MT_workspace_menu.prepend(workspace_menu)
|
||||||
|
bpy.app.handlers.frame_change_post.append(on_scene)
|
||||||
|
bpy.app.handlers.load_post.append(on_scene)
|
||||||
assign_shortcuts()
|
assign_shortcuts()
|
||||||
|
|
||||||
def unregister():
|
def unregister():
|
||||||
@ -65,7 +74,8 @@ def unregister():
|
|||||||
bpy.utils.unregister_class(c)
|
bpy.utils.unregister_class(c)
|
||||||
bpy.utils.register_class(og_header)
|
bpy.utils.register_class(og_header)
|
||||||
bpy.types.TOPBAR_MT_workspace_menu.remove(workspace_menu)
|
bpy.types.TOPBAR_MT_workspace_menu.remove(workspace_menu)
|
||||||
|
bpy.app.handlers.frame_change_post.remove(on_scene)
|
||||||
|
bpy.app.handlers.load_post.remove(on_scene)
|
||||||
remove_shortcuts()
|
remove_shortcuts()
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
Loading…
x
Reference in New Issue
Block a user