feat: Integrated Stream asset and Kai animation system

This commit is contained in:
2026-01-29 00:09:00 +01:00
parent 94565adffc
commit afa0e3c662
59 changed files with 1477 additions and 19 deletions

17
main/vibe_main.script Normal file
View File

@@ -0,0 +1,17 @@
-- One-file "vibe" bootstrap: spawns grass + water + Kai (no gameplay code)
local function v3(x, y, z)
return vmath.vector3(x or 0, y or 0, z or 0)
end
function init(self)
-- Bottom water strip
factory.create("#water_factory", v3(0, 0, 0))
-- Grass platform above water (water image is 444px tall)
factory.create("#grass_factory", v3(0, 444, 0))
-- Kai on the grass (roughly centered on a 4-tile wide grass strip: 4 * 512 = 2048)
-- Place him a bit above the grass seam so feet sit on the platform.
factory.create("#kai_factory", v3(1024, 560, 0))
end