aboutsummaryrefslogtreecommitdiff
path: root/guile/starlet/snap-transition.scm
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2021-12-21 12:58:57 +0100
committerThomas White <taw@physics.org>2022-01-25 20:14:51 +0100
commit0171a2975024ea7155b02951943754688488ecee (patch)
tree80e08c1439818497cfbfe91e5d424d6028902ffd /guile/starlet/snap-transition.scm
parente6910f04437e23047c9a1519c9c77af55fcbf4fe (diff)
Separate cue lists from playbacks and crossfades
Diffstat (limited to 'guile/starlet/snap-transition.scm')
-rw-r--r--guile/starlet/snap-transition.scm30
1 files changed, 30 insertions, 0 deletions
diff --git a/guile/starlet/snap-transition.scm b/guile/starlet/snap-transition.scm
new file mode 100644
index 0000000..c44a2ea
--- /dev/null
+++ b/guile/starlet/snap-transition.scm
@@ -0,0 +1,30 @@
+;;
+;; starlet/snap-transition.scm
+;;
+;; Copyright © 2021 Thomas White <taw@bitwiz.org.uk>
+;;
+;; This file is part of Starlet.
+;;
+;; Starlet is free software: you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;; GNU General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see <http://www.gnu.org/licenses/>.
+;;
+(define-module (starlet snap-transition)
+ #:use-module (oop goops)
+ #:use-module (starlet playback)
+ #:use-module (starlet transition-effect)
+ #:export (snap))
+
+(define (snap)
+ (make <transition-effect>
+ #:func (lambda (incoming-state clock)
+ incoming-state)))