Skip to content

Commit

Permalink
Dumb
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinmera committed Jul 24, 2024
1 parent fe1af01 commit 6a45aa5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions asset.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,8 @@
(let ((base (pool-path pool #p""))
(default-options (rest (find T attributes :key #'first)))
(exclude (enlist exclude)))
(when debug
(print (pool-path pool pathname)))
(loop for path in (directory (pool-path pool pathname) :resolve-symlinks NIL)
unless (loop for exclusion in exclude
thereis (pathname-match-p path exclusion))
Expand Down
4 changes: 2 additions & 2 deletions harmony/asset.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
(defmethod trial:play ((voice voice) target)
(harmony:play voice :location target))

(defmethod trial:play ((voice voice) (target entity))
(defmethod trial:play ((voice voice) (target trial:entity))
(let ((vec (vec3)))
(declare (dynamic-extent vec))
(trial:global-location target vec)
Expand All @@ -230,7 +230,7 @@
(mixed:seek (voice voice) to :by :second))

(defmethod trial:fade-to (volume (voice voice) &rest args &key &allow-other-keys)
(apply #'harony:transition (voice voice) volume args))
(apply #'harmony:transition (voice voice) volume args))

(defmethod trial:clone ((voice voice) &key)
(error "FIXME: implement this."))

0 comments on commit 6a45aa5

Please sign in to comment.