- Created Plugin loading system
- Added lazy loading system for elements (optional feature) - Improved rendering performance - Added ID system which is separated from Eement Names - Added Focussystem for container - Improved container performance by only rendering and handling events from visible childrens instead of all - Added label and input - Added animation and xml
This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
|
||||
local args = {...}
|
||||
|
||||
local basaltPath = args[1] or "basalt"
|
||||
local basaltPath = fs.getDir(args[2])
|
||||
|
||||
local defaultPath = package.path
|
||||
local format = "path;/path/?.lua;/path/?/init.lua;"
|
||||
@@ -18,6 +16,7 @@ end
|
||||
-- Use xpcall with error handler
|
||||
local ok, result = pcall(require, "main")
|
||||
|
||||
package.path = defaultPath
|
||||
if not ok then
|
||||
errorHandler(result)
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user