Jabby
Jabby, by alicesaidhi, is a Debugger developed for Jecs, an ECS library by Ukendio. This Plugin handles all setup to add the Planck Scheduler to Jabby.
Installation
wally.toml
[dependencies]
PlanckJabby = "yetanotherclown/planck-jabby@0.2.0-rc.1"
Setup and Use
First, we need to create the scheduler, and add the Jabby Plugin to it.
src/shared/scheduler.luau
local Planck = require("@packages/Planck")
local Scheduler = Planck.Scheduler
local world = require("@shared/world")
local PlanckJabby = require("@packages/PlanckJabby")
local jabbyPlugin = PlanckJabby.new()
local scheduler = scheduler.new(world)
:addPlugin(jabbyPlugin)
return scheduler
This only adds the Scheduler to Jabby, you'll have to add the World and other setup yourself.