“Как я могу использовать модуль любви Enums Lua Assist” Ответ

Как я могу использовать модуль любви Enums 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

Как получить доступ к модулю Love Enums Lua Assist

gis = require ("Modules/packageHandler")

local utils = gis.mylove.utils

local enums = utils.enums
Cleric Norse Gaming

Ответы похожие на “Как я могу использовать модуль любви Enums Lua Assist”

Вопросы похожие на “Как я могу использовать модуль любви Enums Lua Assist”

Больше похожих ответов на “Как я могу использовать модуль любви Enums Lua Assist” по Lua

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

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