summaryrefslogtreecommitdiffhomepage
path: root/deploy_template/mygame/documentation/01-high-level.md
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/documentation/01-high-level.md
parent2f845281f133849256b57bb08fd3e9ae57600784 (diff)
parenteaa29e72939f5edf61735ccbb73c36ee89369f65 (diff)
downloaddragonruby-game-toolkit-contrib-5954b9beb4d4a3b4f248d72d1851195f030558a8.tar.gz
dragonruby-game-toolkit-contrib-5954b9beb4d4a3b4f248d72d1851195f030558a8.zip
Merge branch 'DragonRuby:master' into masterHEADmaster
Diffstat (limited to 'deploy_template/mygame/documentation/01-high-level.md')
-rw-r--r--deploy_template/mygame/documentation/01-high-level.md31
1 files changed, 0 insertions, 31 deletions
diff --git a/deploy_template/mygame/documentation/01-high-level.md b/deploy_template/mygame/documentation/01-high-level.md
deleted file mode 100644
index 7206d8d..0000000
--- a/deploy_template/mygame/documentation/01-high-level.md
+++ /dev/null
@@ -1,31 +0,0 @@
-# General Stuff
-
-- You have 1280x720 pixels to work with. The bottom left corner is 0, 0
- with X increasing going right, and Y increasing going up.
-- The game is on a fixed 60 fps cycle (no delta time needed).
-- Come to the Discord if you need help: http://discord.dragonruby.org
-- Going through all the sample apps is a REALLY GOOD IDEA. Most sample apps
- contain a recorded replay/demo. So just double click `watch-recording` to
- see a full presentation of the sample.
-
-# Entry Point
-
-For all the examples in the other documentation files. It's assumed they
-are being placed into the follow code block:
-
-```
-# Entry point placed in main.rb
-def tick args
- args.outputs.labels << [100, 100, 'hello world']
-end
-```
-
-# New to Ruby
-
-If you are a complete beginner and have never coded before:
-
-1. Run the 00_beginner_ruby_primer sample app and work through it.
- Video walkthrough: https://s3.amazonaws.com/s3.dragonruby.org/dragonruby-gtk-primer.mp4
-2. Read all the code in the 00_intermediate_ruby_primer sample app.
- Video walkthrough: https://s3.amazonaws.com/s3.dragonruby.org/dragonruby-gtk-intermediate.mp4
-3. There is also a free course you can sign up for at http://dragonruby.school