Initial commit

This commit is contained in:
Blitz
2024-08-11 18:55:31 +02:00
commit 1886723da2
20 changed files with 1153 additions and 0 deletions

15
xmake/editor.lua Normal file
View File

@@ -0,0 +1,15 @@
target("Editor")
set_default(false)
-- Disable building
on_build((function() end))
on_run(
(function(godot_project_folder)
return function(target)
local project_file = path.join(godot_project_folder, "project.godot")
os.execv("echo", {"godot", project_file})
os.exec("godot " .. project_file)
end
end)(GODOT_PROJECT_FOLDER)
)