added docs/
authorBrendan Hansen <brendan.f.hansen@gmail.com>
Thu, 6 May 2021 13:48:25 +0000 (08:48 -0500)
committerBrendan Hansen <brendan.f.hansen@gmail.com>
Thu, 6 May 2021 13:48:25 +0000 (08:48 -0500)
docs/tower_defense [new file with mode: 0644]
src/tower.onyx

diff --git a/docs/tower_defense b/docs/tower_defense
new file mode 100644 (file)
index 0000000..731316d
--- /dev/null
@@ -0,0 +1,17 @@
+Tower Defense with Programmable Robots
+--------------------------------------
+
+Unlock things such as:
+    - Sensors for enemies
+        * Distance
+        * Health
+        * etc
+
+    - Movement abilities
+    
+    - Weapons / Attacks
+
+
+Programming will be on a SCRATCH like iterface (i.e. no typing the code)
+Connect logic blocks and sensors
+More like FRP, but not because no one knows what that is
index 7f2ed0984cbdb9cc06c124fccfcbb51503a25b77..b77f78e818fc020d0a568d2529d28acd714a830a 100644 (file)
@@ -40,6 +40,7 @@ draw :: () {
     gl.clear(gl.COLOR_BUFFER_BIT);
 
     gfx.quad(.{ 0, 0 }, .{ 400, 400 }, color=.{ 1, 0, 1 });
+    gfx.quad(.{ 20, 0 }, .{ 400, 400 }, color=.{ 1, 1, 1 });
     gfx.flush();
 }