diff options
author | Colin Okay <okay@toyful.space> | 2022-07-09 15:26:03 -0500 |
---|---|---|
committer | Colin Okay <okay@toyful.space> | 2022-07-09 15:26:03 -0500 |
commit | 62d23b98785538b6e1d212a8acc086d5c0a65c63 (patch) | |
tree | 68db26874712a58d6da23b5b6d4fb7fdebf4714e | |
parent | 7cbe9c175aad6fe7e5cb93c42393f570804af7a5 (diff) |
[example] minor change
-rw-r--r-- | examples/09-ghoulspree.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/09-ghoulspree.lisp b/examples/09-ghoulspree.lisp index ffeb324..05bd4a3 100644 --- a/examples/09-ghoulspree.lisp +++ b/examples/09-ghoulspree.lisp @@ -21,7 +21,7 @@ (defun make-ghoul (x y) (make-instance 'ghoul :texture (ww:get-asset "Fezghoul.png") :x x :y y - :dr (random-velocity) + :dr (random-velocity 0.2) :dx (random-velocity 4) :dy (random-velocity 4))) |