Added the following feature:
NEW: (#9531) Add editor.bob()
function to editor scripts
Now you can perform bob tasks using editor scripts. Some examples:
- Print help in the console:
editor.bob({help = true})
- Bundle the game for the host platform:
local opts = { archive = true, platform = editor.platform } editor.bob(opts, "distclean", "resolve", "build", "bundle")
- Use a custom build server and extra settings files for overriding
game.project
settings:local opts = { archive = true, platform = editor.platform, build_server = "https://build.my-company.com", settings = {"test.ini", "headless.ini"} } editor.bob(opts, "distclean", "resolve", "build")