squat talk

This commit is contained in:
Bryce Covert
2016-02-17 22:25:24 -08:00
parent c59cfc5f92
commit 93910187ab
19 changed files with 1125 additions and 1077 deletions

View File

@@ -957,3 +957,10 @@
(constantly (get-in @entities [:cam :zoom]))
nil
(* 0.01 (inc n)))))
(defn squat-talk [entities & msgs]
(when (seq msgs)
(do
(actions/talk entities :ego (first msgs) :anim :squat-talk :stop? false)
(Thread/sleep 200)
(recur entities (rest msgs)))))