setTBarPosition method
Sets the position of the T-Bar (Transition bar).
Note: Only Studio Mode is supported. Studio Mode must be enabled.
- Complexity Rating: 3/5
- Latest Supported RPC Version: 1
- Added in v5.0.0
position >= 0.0, <= 1.0
Implementation
Future<void> setTBarPosition({
required double position,
bool? release,
}) async => await obsWebSocket.sendRequest(
Request(
'SetTBarPosition',
requestData: {'position': position, 'release': ?release},
),
);