27 lines
730 B
Kotlin
27 lines
730 B
Kotlin
package net.eksb.obsdc
|
|
|
|
enum class Op {
|
|
/** If in studio mode, transition between scenes. */
|
|
STUDIO_TRANSITION,
|
|
/** Enable/disable studio mode. */
|
|
STUDIO_MODE_TOGGLE,
|
|
/** Activate the previous scene. */
|
|
SCENE_PREV,
|
|
/** Activate the next scene. */
|
|
SCENE_NEXT,
|
|
/** Activate the first scene. */
|
|
SCENE_1,
|
|
/** Activate the second scene. */
|
|
SCENE_2,
|
|
/** Activate the third scene. */
|
|
SCENE_3,
|
|
/** Move the bottom-most unlocked source in the active scene up. */
|
|
PAN_UP,
|
|
/** Move the bottom-most unlocked source in the active scene down. */
|
|
PAN_DOWN,
|
|
/** Move the bottom-most unlocked source in the active scene left. */
|
|
PAN_LEFT,
|
|
/** Move the bottom-most unlocked source in the active scene right. */
|
|
PAN_RIGHT,
|
|
;
|
|
} |