Quellcode durchsuchen

changed the look and fixed bugs

tags/earlywindows
Madiwka3 vor 3 Jahren
Ursprung
Commit
f89f660953
2 geänderte Dateien mit 15 neuen und 0 gelöschten Zeilen
  1. +4
    -0
      entities/ship/ship.lua
  2. +11
    -0
      readme.md

+ 4
- 0
entities/ship/ship.lua Datei anzeigen

@@ -40,7 +40,9 @@ function ship:update(dt)
end
if love.keyboard.isDown('s') then
self.speed = math.sqrt(self.dx^2 + self.dy^2)
if self.speed > 0 then
self.speed = self.speed - 0.5
end
self.dx = math.cos(self.vector) * self.speed
self.dy = math.sin(self.vector) * self.speed
end
@@ -50,6 +52,7 @@ function ship:update(dt)
self.dx = math.cos(self.vector) * self.speed
self.dy = math.sin(self.vector) * self.speed
end
--[[
if love.keyboard.isDown('left') then
self.dx = self.dx - 0.5
end
@@ -62,6 +65,7 @@ function ship:update(dt)
if love.keyboard.isDown('down') then
self.dy = self.dy + 0.5
end
]]--
print(self.speed)
--[[


+ 11
- 0
readme.md Datei anzeigen

@@ -0,0 +1,11 @@
#Nuclear Gravity (name subjecct for change)

Have you ever used gravity to escape to your base when your spaceship's fuel runs out? no? well you should




In this new game you do exactly that. WASD controls camera, everything else is done via the mouse button.


To launch the game, use debuggame.sh. Lua is required

Laden…
Abbrechen
Speichern