Skip to content

Commit

Permalink
Bump Jabby v0.2.0-rc.9 (#197)
Browse files Browse the repository at this point in the history
Fixes demo not running because of breaking changes in Jabby
  • Loading branch information
YetAnotherClown authored Feb 21, 2025
1 parent 4c5e5e1 commit 872e5c9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
18 changes: 11 additions & 7 deletions demo/src/ReplicatedStorage/std/scheduler.luau
Original file line number Diff line number Diff line change
Expand Up @@ -56,17 +56,21 @@ world:set(PreSimulation, Event, RunService.PreSimulation)
world:add(PreAnimation, Phase)
world:set(PreAnimation, Event, RunService.PreAnimation)

table.insert(jabby.public, {
class_name = "World",
jabby.register({
applet = jabby.applets.world,
name = "MyWorld",
configuration = {
world = world,
debug = Name,
entities = {},
},
})

jabby.public.updated = true

table.insert(jabby.public, jabby_scheduler)
jabby.register({
applet = jabby.applets.scheduler,
name = "Scheduler",
configuration = {
scheduler = jabby_scheduler,
},
})

if RunService:IsClient() then
world:add(PreRender, Phase)
Expand Down
2 changes: 1 addition & 1 deletion demo/wally.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ registry = "https://github.com/UpliftGames/wally-index"
realm = "shared"

[dependencies]
jabby = "alicesaidhi/[email protected].3"
jabby = "alicesaidhi/[email protected].9"

0 comments on commit 872e5c9

Please sign in to comment.