Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

24 righe
662 B

  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