Skip to content

Latest commit

 

History

History
119 lines (48 loc) · 2.16 KB

Get-OBSSceneItemBlendMode.md

File metadata and controls

119 lines (48 loc) · 2.16 KB

Get-OBSSceneItemBlendMode

Synopsis

Get-OBSSceneItemBlendMode : GetSceneItemBlendMode


Description

Gets the blend mode of a scene item.

Blend modes:

  • OBS_BLEND_NORMAL
  • OBS_BLEND_ADDITIVE
  • OBS_BLEND_SUBTRACT
  • OBS_BLEND_SCREEN
  • OBS_BLEND_MULTIPLY
  • OBS_BLEND_LIGHTEN
  • OBS_BLEND_DARKEN

Scenes and Groups

Get-OBSSceneItemBlendMode calls the OBS WebSocket with a request of type GetSceneItemBlendMode.


Related Links


Parameters

SceneName

Name of the scene the item is in

Type Required Position PipelineInput
[String] true 1 true (ByPropertyName)

SceneItemId

Numeric ID of the scene item

Type Required Position PipelineInput
[Double] true 2 true (ByPropertyName)

PassThru

If set, will return the information that would otherwise be sent to OBS.

Type Required Position PipelineInput Aliases
[Switch] false named true (ByPropertyName) OutputRequest
OutputInput

NoResponse

If set, will not attempt to receive a response from OBS. This can increase performance, and also silently ignore critical errors

Type Required Position PipelineInput Aliases
[Switch] false named true (ByPropertyName) NoReceive
IgnoreResponse
IgnoreReceive
DoNotReceiveResponse

Syntax

Get-OBSSceneItemBlendMode [-SceneName] <String> [-SceneItemId] <Double> [-PassThru] [-NoResponse] [<CommonParameters>]