aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorColin Okay <colin@cicadas.surf>2022-06-28 06:34:12 -0500
committerColin Okay <colin@cicadas.surf>2022-06-28 06:34:12 -0500
commit3527744ffd63f2d83659964d32a5a838bf83baef (patch)
treeeafedbe1dcd91feb0902b2dd92e796e9e7adc9b1 /examples
parentf311a9c510e4c54fb6cfaac2c3dc9681b6804b3a (diff)
[modify] +standard-font-chars+ includes newline
Diffstat (limited to 'examples')
-rw-r--r--examples/02-moving-bitmp.lisp2
-rw-r--r--examples/03-font-render.lisp6
2 files changed, 6 insertions, 2 deletions
diff --git a/examples/02-moving-bitmp.lisp b/examples/02-moving-bitmp.lisp
index 0cce4e3..282d003 100644
--- a/examples/02-moving-bitmp.lisp
+++ b/examples/02-moving-bitmp.lisp
@@ -128,6 +128,8 @@
(ww::start (make-instance 'bitmap-display
:scale 2.0
:fps 60
+ :width 800
+ :height 600
:asset-root (merge-pathnames
"examples/"
(asdf:system-source-directory :wheelwork)))))
diff --git a/examples/03-font-render.lisp b/examples/03-font-render.lisp
index 60ffcf2..551d4ba 100644
--- a/examples/03-font-render.lisp
+++ b/examples/03-font-render.lisp
@@ -48,13 +48,13 @@
(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)))))
(ww::set-height-preserve-aspect hello 100)
(setf
(ww::unit-x hello) 100
- (ww::unit-y hello) 400)
+ (ww::unit-y hello) 300)
(ww::add-handler hello #'marquee)
(ww::add-handler hello #'change-text-color)
(ww::add-handler hello #'twirl-on-click)
@@ -67,6 +67,8 @@
'font-display
:fps 60
:refocus-on-mousedown-p nil
+ :width 800
+ :height 600
:title "Wheelwork Example: Font display"
:asset-root (merge-pathnames
"examples/"