1 # SPDX-FileCopyrightText: 2016-2020 by Nathan Lovato, Daniel Oakey, Razvan Radulescu, and contributors
3 # SPDX-License-Identifier: GPL-3.0-or-later
8 class PowerSequencerProperties(bpy
.types
.PropertyGroup
):
9 playback_speed
: bpy
.props
.EnumProperty(
11 ("NORMAL", "Normal (1x)", ""),
12 ("DOUBLE", "Double (2x)", ""),
13 ("TRIPLE", "Triple (3x)", ""),
19 active_tab
: bpy
.props
.StringProperty(
20 name
="Active Tab", description
="The name of the active tab in the UI", default
="Sequencer"
24 def register_properties():
25 bpy
.utils
.register_class(PowerSequencerProperties
)
26 bpy
.types
.Scene
.power_sequencer
= bpy
.props
.PointerProperty(type=PowerSequencerProperties
)
29 def unregister_properties():
30 bpy
.utils
.unregister_class(PowerSequencerProperties
)