Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
exeldro committed Mar 28, 2020
0 parents commit ac6f79d
Show file tree
Hide file tree
Showing 7 changed files with 1,315 additions and 0 deletions.
14 changes: 14 additions & 0 deletions CMakeLists.txt
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)
339 changes: 339 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions README.md
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.

18 changes: 18 additions & 0 deletions data/locale/en-US.ini
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"
18 changes: 18 additions & 0 deletions data/locale/nl-NL.ini
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"
Loading

0 comments on commit ac6f79d

Please sign in to comment.