summaryrefslogtreecommitdiffhomepage
path: root/dragon
diff options
context:
space:
mode:
authorNick Sandberg <[email protected]>2021-02-24 06:02:06 -0700
committerAmir Rajan <[email protected]>2021-02-24 18:03:07 -0800
commit9aed616a037d9630946e261b84d889cd95a7e321 (patch)
tree747fdc7bedaadcebb5b73613a36a9e7daeb09050 /dragon
parent5bc6d6fa16bcf1da4485e4ccc870f046cc48a522 (diff)
downloaddragonruby-game-toolkit-contrib-9aed616a037d9630946e261b84d889cd95a7e321.tar.gz
dragonruby-game-toolkit-contrib-9aed616a037d9630946e261b84d889cd95a7e321.zip
added the correct execute draw order
Diffstat (limited to 'dragon')
-rw-r--r--dragon/draw.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/dragon/draw.rb b/dragon/draw.rb
index 7f2df9a..128624d 100644
--- a/dragon/draw.rb
+++ b/dragon/draw.rb
@@ -10,10 +10,10 @@ module GTK
def execute_draw_order pass
# Don't change this draw order unless you understand
# the implications.
- render_static_sprites pass
render_solids pass
- render_sprites pass
render_static_solids pass
+ render_sprites pass
+ render_static_sprites pass
render_primitives pass
render_static_primitives pass
render_labels pass