README update

master
E. Almqvist 3 years ago
parent aa1701a55f
commit 15af82d5a9
  1. 4
      README.md
  2. BIN
      media/orbit_of_orbit.png
  3. 2
      src/app.rb
  4. 2
      src/config.rb

@ -1,3 +1,7 @@
# Hohmann Miner
Mine stuff and then get more stuff but in space.
![](media/preview.png)
## Orbits!
![](media/orbit_of_orbit.png)
You can now orbit stuff that orbits other stuff!

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

@ -66,7 +66,7 @@ class Window < Gosu::Window
sol = Planet.new("Sol", self, 0xff_ffffaa, 1e2, 15, 1)
sol.pos = Vector[800, 450]
planet = Planet.new("Planet", self, 0xff_cccccc, 1e1, 8, 1)
planet = Planet.new("Planet", self, 0xff_cccccc, 1e2, 8, 1)
planet.pos = Vector[800, 450 + 800]
planet.vel = Vector[-2, 0]
planet.show_info = true

@ -7,7 +7,7 @@ WORLD_SEED = 123456789
# UI
WINDOW_WIDTH = 1200
WINDOW_HEIGHT = 900
WINDOW_FULLSCREEN = false
WINDOW_FULLSCREEN = true
MAIN_FONT = "monospace"
# Keybinds

Loading…
Cancel
Save