We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f343095 commit 5b6e377Copy full SHA for 5b6e377
1 file changed
obs-powershell.types.ps1xml
@@ -63,6 +63,20 @@ $this | Set-OBSSceneItemTransform -SceneItemTransform ([PSCustomObject][Ordered]
63
$this | Remove-OBSSceneItem
64
</Script>
65
</ScriptMethod>
66
+ <ScriptMethod>
67
+ <Name>Rotate</Name>
68
+ <Script>
69
+ param(
70
+[Alias('Degrees', 'Rotation')]
71
+[double]
72
+$Degree
73
+)
74
+
75
+$this | Set-OBSSceneItemTransform -SceneItemTransform @{
76
+ rotation = $Degree
77
+}
78
+ </Script>
79
+ </ScriptMethod>
80
<ScriptMethod>
81
<Name>Unlock</Name>
82
<Script>
0 commit comments