- WorldDef enqueue_task/finish_task/user_task_context (C contract incl. null-return-means-inline); TaskSystem dispatch (Serial/Internal/External) replaces the bare scheduler; determinism hash bit-identical through an external thread-per-task system. - examples/box3d: makepad app rendering the live simulation (offscreen 3D pass with depth, orbit/zoom camera, instanced lit boxes/spheres, 204-box pyramid + spheres, 4-worker solver, Space to reset). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
12 lines
395 B
TOML
12 lines
395 B
TOML
[package]
|
|
name = "makepad-example-box3d"
|
|
version = "0.1.0"
|
|
authors = ["Makepad <info@makepad.nl>"]
|
|
edition = "2021"
|
|
description = "Box3D physics simulation rendered in 3D with makepad"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
makepad-widgets = { path = "../../widgets", version = "2.0.0" }
|
|
makepad-xr = { path = "../../xr", version = "1.0.0" }
|
|
makepad-box3d = { path = "../../libs/box3d" }
|