Add lscor to Halyde #18

Merged
mikethe223 merged 9 commits from main into main 2025-06-01 06:42:42 +00:00
Showing only changes of commit 6e7de9ce6e - Show all commits
+1 -8
View File
@@ -1,11 +1,3 @@
_G.cormgr = {}
_G.cormgr.corList = {}
--local ocelot = component.proxy(component.list("ocelot")())
local component = import("component")
local filesystem = import("filesystem")
local json = import("json")
local gpu = component.proxy(component.list("gpu")()) local gpu = component.proxy(component.list("gpu")())
function _G.cormgr.loadCoroutine(path,...) function _G.cormgr.loadCoroutine(path,...)
@@ -26,6 +18,7 @@ function _G.cormgr.loadCoroutine(path, ...)
end end
--import(path, table.unpack(args)) --import(path, table.unpack(args))
end) end)
table.insert(_G.cormgr.labelList, string.match(tostring(path), "([^/]+)%.lua$"))
table.insert(_G.cormgr.corList, cor) table.insert(_G.cormgr.corList, cor)
end end