-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit ac6f79d
Showing
7 changed files
with
1,315 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
project(move-transition) | ||
|
||
set(move-transition_HEADERS | ||
move-transition.h) | ||
set(move-transition_SOURCES | ||
move-transition.c) | ||
|
||
add_library( move-transition MODULE | ||
${move-transition_HEADERS} | ||
${move-transition_SOURCES}) | ||
target_link_libraries(move-transition | ||
libobs) | ||
|
||
install_obs_plugin_with_data(move-transition data) |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Move transition for OBS Studio | ||
|
||
Plugin for OBS Studio to move source to a new position during scene transition | ||
|
||
Unzip the download in the OBS folder for example: | ||
C:\Program Files (x86)\obs-studio\ | ||
or | ||
C:\Program Files\obs-studio\ | ||
|
||
Start OBS Studio 64 bit | ||
Add a Move transition. | ||
|
||
# Move transition | ||
Transition that moves all sources to a new position | ||
## Properties | ||
* **Ease in and out** | ||
Eases the start and end of the movement of the sources. | ||
* **Position in** | ||
The position new sources are coming from. | ||
* **Zoom in** | ||
New sources are zooming in on appearing, instead of staying the same size. | ||
* **Position out** | ||
The position old sources are going to. | ||
* **Zoom out** | ||
Old sources are zooming out on disappearing, instead of staying the same size. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Name="Move" | ||
Description="Transition that moves all sources to a new position" | ||
EaseInOut="Ease in and out" | ||
PositionIn="Position in" | ||
PositionOut="Position out" | ||
ZoomIn="Zoom in" | ||
ZoomOut="Zoom out" | ||
Position.None="None" | ||
Position.Center="Center" | ||
Position.CenterInverse="Away from center" | ||
Position.TopLeft="Top left" | ||
Position.TopCenter="Top center" | ||
Position.TopRight="Top right" | ||
Position.CenterRight="Center right" | ||
Position.BottomRight="Bottom right" | ||
Position.BottomCenter="Bottom center" | ||
Position.BottomLeft="Bottom left" | ||
Position.CenterLeft="Center left" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Name="Move" | ||
Description="Transitie die alle bronnen naar een nieuwe plek verplaats" | ||
EaseInOut="Soepel in en uit" | ||
PositionIn="Positie in" | ||
PositionOut="Positie uit" | ||
ZoomIn="Zoem in" | ||
ZoomOut="Zoem uit" | ||
Position.None="Geen" | ||
Position.Center="Midden" | ||
Position.CenterInverse="Weg van het midden" | ||
Position.TopLeft="Linksboven" | ||
Position.TopCenter="Middenboven" | ||
Position.TopRight="Rechtsboven" | ||
Position.CenterRight="Rechtsmidden" | ||
Position.BottomRight="Rechtsonder" | ||
Position.BottomCenter="Middenonder" | ||
Position.BottomLeft="Linksonder" | ||
Position.CenterLeft="Linksmidden" |
Oops, something went wrong.