“Jak używać modułu miłości, Lua Assist” Kod odpowiedzi

Jak używać modułu miłości, Lua Assist

function love.load()
  print(enums.entitytags.player)
  print(enums.entitytags.enemy)

  enums.gamestates.main = true
end

function love.update(dt)
  if enums.gamestates.play == true then
     print("You are in the Play State")
  end
  if enums.gamestates.main == true then
     print("You are in the Main Menu State")
  end
  if enums.gamestates.exit == true then
     print("You are in the Exit State")
  end
  if enums.gamestates.paused == true then
     print("You are in the Paused State")
  end
end
Cleric Norse Gaming

Jak uzyskać dostęp do modułu Love Enums Assist

gis = require ("Modules/packageHandler")

local utils = gis.mylove.utils

local enums = utils.enums
Cleric Norse Gaming

Odpowiedzi podobne do “Jak używać modułu miłości, Lua Assist”

Pytania podobne do “Jak używać modułu miłości, Lua Assist”

Więcej pokrewnych odpowiedzi na “Jak używać modułu miłości, Lua Assist” w Lua

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu