io_mesh_uv_layout: speed up png export with OIIO (x7)
[blender-addons.git] / power_sequencer / addon_properties.py
blob3e7a4df37b92b64f2992906491cd7d59f1a57f8d
1 # SPDX-License-Identifier: GPL-3.0-or-later
2 # Copyright (C) 2016-2020 by Nathan Lovato, Daniel Oakey, Razvan Radulescu, and contributors
3 import bpy
6 class PowerSequencerProperties(bpy.types.PropertyGroup):
7 playback_speed: bpy.props.EnumProperty(
8 items=[
9 ("NORMAL", "Normal (1x)", ""),
10 ("DOUBLE", "Double (2x)", ""),
11 ("TRIPLE", "Triple (3x)", ""),
13 name="Playback",
14 default="NORMAL",
17 active_tab: bpy.props.StringProperty(
18 name="Active Tab", description="The name of the active tab in the UI", default="Sequencer"
22 def register_properties():
23 bpy.utils.register_class(PowerSequencerProperties)
24 bpy.types.Scene.power_sequencer = bpy.props.PointerProperty(type=PowerSequencerProperties)
27 def unregister_properties():
28 bpy.utils.unregister_class(PowerSequencerProperties)