25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

textures.lua 662 B

123456789101112131415161718192021222324
  1. texture = {
  2. -- (G)UI Textures:
  3. ui = {
  4. arrow = {
  5. grey = love.graphics.newImage("textures/ui/arrow_grey.png"),
  6. red = love.graphics.newImage("textures/ui/arrow_red.png")
  7. }
  8. },
  9. -- Player/Spacecraft Textures:
  10. player = {
  11. -- Orbiter Spacecraft:
  12. orbiter = {
  13. ship = love.graphics.newImage("textures/player/orbiter/orbiter.png"),
  14. lowThrust = love.graphics.newImage("textures/player/orbiter/lowThrust.png"),
  15. fullThrust = love.graphics.newImage("textures/player/orbiter/fullThrust.png")
  16. }
  17. },
  18. -- Planet Textures:
  19. planet = {}
  20. }
  21. return texture