“Как использовать модуль enums lua” Ответ

Как использовать модуль enums lua

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

Как получить доступ к модулю enums luaassist

gis = require ("Modules/packageHandler")

local utils = gis.mylove.utils

local enums = utils.enums
Cleric Norse Gaming

Ответы похожие на “Как использовать модуль enums lua”

Вопросы похожие на “Как использовать модуль enums lua”

Больше похожих ответов на “Как использовать модуль enums lua” по Lua

Смотреть популярные ответы по языку

Смотреть другие языки программирования