summaryrefslogtreecommitdiffhomepage
path: root/deploy_template/mygame/app/main.rb
diff options
context:
space:
mode:
author_Tradam <[email protected]>2021-12-16 19:22:26 -0500
committerGitHub <[email protected]>2021-12-16 19:22:26 -0500
commit5954b9beb4d4a3b4f248d72d1851195f030558a8 (patch)
treefecd8aa840a25afdb502915b0fdb4d03b7ed339a /deploy_template/mygame/app/main.rb
parent2f845281f133849256b57bb08fd3e9ae57600784 (diff)
parenteaa29e72939f5edf61735ccbb73c36ee89369f65 (diff)
downloaddragonruby-game-toolkit-contrib-master.tar.gz
dragonruby-game-toolkit-contrib-master.zip
Merge branch 'DragonRuby:master' into masterHEADmaster
Diffstat (limited to 'deploy_template/mygame/app/main.rb')
-rw-r--r--deploy_template/mygame/app/main.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/deploy_template/mygame/app/main.rb b/deploy_template/mygame/app/main.rb
index 5683cc2..0ebdc6b 100644
--- a/deploy_template/mygame/app/main.rb
+++ b/deploy_template/mygame/app/main.rb
@@ -1,5 +1,6 @@
def tick args
- args.outputs.labels << [ 580, 500, 'Hello World!' ]
- args.outputs.labels << [ 640, 460, 'Go to docs/docs.html and read it!', 5, 1 ]
- args.outputs.sprites << [ 576, 310, 128, 101, 'dragonruby.png' ]
+ args.outputs.labels << [640, 500, 'Hello World!', 5, 1]
+ args.outputs.labels << [640, 460, 'Go to docs/docs.html and read it!', 5, 1]
+ args.outputs.labels << [640, 420, 'Join the Discord! http://discord.dragonruby.org', 5, 1]
+ args.outputs.sprites << [576, 280, 128, 101, 'dragonruby.png']
end