aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/03-font-render.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/03-font-render.lisp')
-rw-r--r--examples/03-font-render.lisp35
1 files changed, 16 insertions, 19 deletions
diff --git a/examples/03-font-render.lisp b/examples/03-font-render.lisp
index de3c487..66d097d 100644
--- a/examples/03-font-render.lisp
+++ b/examples/03-font-render.lisp
@@ -49,16 +49,13 @@
(defmethod ww::boot ((app font-display))
(let ((hello
- (make-instance
- 'ww::text
- ;:content "Hell! Oh World ..."
- :content (format nil "Hell!~%Oh World...")
- :font (ww::get-asset "Ticketing.ttf" :asset-args '(:oversample 2))))
+ (make-instance 'ww::text
+ :content (format nil "Hell!~%Oh World...")
+ :font (ww::get-asset "Ticketing.ttf" :asset-args '(:oversample 2))))
(instructions
- (make-instance
- 'ww::text
- :content "Click to spin. Press any key to change color."
- :font (ww::get-asset "Ticketing.ttf"))))
+ (make-instance 'ww::text
+ :content "Click to spin. Press any key to change color."
+ :font (ww::get-asset "Ticketing.ttf"))))
(ww::scale-by hello 3.0)
(setf
@@ -77,16 +74,16 @@
(defun start ()
- (ww::start (make-instance
- 'font-display
- :fps 60
- :refocus-on-mousedown-p nil
- :width 800
- :height 600
- :title "Wheelwork Example: Font display"
- :asset-root (merge-pathnames
- "examples/"
- (asdf:system-source-directory :wheelwork)))))
+ (ww::start
+ (make-instance 'font-display
+ :fps 60
+ :refocus-on-mousedown-p nil
+ :width 800
+ :height 600
+ :title "Wheelwork Example: Font display"
+ :asset-root (merge-pathnames
+ "examples/"
+ (asdf:system-source-directory :wheelwork)))))