Skip to content

Commit 6bcfec3

Browse files
author
Christopher Brousseau
committed
Adding future transition details to TransitionListChangedResponse; this does not currently exist in obs-websocket and will be null.
1 parent 67f24f1 commit 6bcfec3

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed
Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
package net.twasi.obsremotejava.events.responses;
22

3+
import net.twasi.obsremotejava.objects.Transition;
34
import net.twasi.obsremotejava.requests.ResponseBase;
45

6+
import java.util.List;
7+
58
public class TransitionListChangedResponse extends ResponseBase {
6-
// Leaving this empty for now to match ScenesChangedResponse event strategy.
7-
//
8-
// We may want to populate both of these with scenes/transitions when changed:
9-
// The list of available transitions has been modified. Transitions have been added, removed, or renamed.
10-
//
11-
// Response Items:
12-
//
13-
// Name Type Description
14-
// --- --- ---
15-
// transitions Array<Object> Transitions list.
16-
// transitions.*.name String Transition name.
9+
// Note: enabled these when https://github.com/Palakis/obs-websocket/blob/4.x-current/src/WSEvents.cpp#L561 is released.
10+
// private List<Transition> transitions;
11+
12+
// public List<Transition> getTransitions() { return transitions; }
1713
}

0 commit comments

Comments
 (0)