summaryrefslogtreecommitdiffhomepage
path: root/samples
diff options
context:
space:
mode:
authorTiago Parreira <[email protected]>2021-01-17 15:12:24 +0100
committerAmir Rajan <[email protected]>2021-01-19 12:44:15 -0600
commitf923bcb6f502cee26b72208499aaa33e0020a0ed (patch)
tree55b9f8c5e5a3c511890585abd3a82e1daed6856f /samples
parenta4b9c048a1d751f5226833bb0c527ba1a8ac5d09 (diff)
downloaddragonruby-game-toolkit-contrib-f923bcb6f502cee26b72208499aaa33e0020a0ed.tar.gz
dragonruby-game-toolkit-contrib-f923bcb6f502cee26b72208499aaa33e0020a0ed.zip
Fix order of tile_* and flip_* arguments in example
Diffstat (limited to 'samples')
-rw-r--r--samples/09_performance/06_static_sprites_as_classes_with_custom_drawing/app/main.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/09_performance/06_static_sprites_as_classes_with_custom_drawing/app/main.rb b/samples/09_performance/06_static_sprites_as_classes_with_custom_drawing/app/main.rb
index d8a01bc..4d8719d 100644
--- a/samples/09_performance/06_static_sprites_as_classes_with_custom_drawing/app/main.rb
+++ b/samples/09_performance/06_static_sprites_as_classes_with_custom_drawing/app/main.rb
@@ -39,9 +39,9 @@ class Star
# x, y, w, h,
# path,
# angle,
- # alpha, red_saturation, green_saturation, blue_saturation
+ # alpha, red_saturation, green_saturation, blue_saturation,
+ # tile_x, tile_y, tile_w, tile_h,
# flip_horizontally, flip_vertically,
- # tile_x, tile_y, tile_w, tile_h
# angle_anchor_x, angle_anchor_y,
# source_x, source_y, source_w, source_h
end