5 minutes
Put the Ship on Screen
A space fighter is the easiest thing in this game to get nearly right. By the end of this lesson the real falconship is on screen, lit, facing the way you expect. By the end of the next one you'll know why the obvious way to make it face that direction breaks the moment the ship rolls.
Start with a project and the assets.
That second command does the real work: it reads the scene, acquires every component it names,
downloads the GLB assets it references, and drops the lot under public/scenes/. Nothing is
copied by hand — this is the same path a member takes, so if it works here it works for them.
Three entities and nothing else
Open src/scenes/spaceshooter.json. The whole scene is three entities:
A light, a camera, and a ship. The far plane at 200000 looks absurd until you remember there
is no horizon out here — Course 3 draws its sky as a box 160000 units across, whose corners sit
some 138,000 units from your eye, and a nearer plane would slice them off.
Continue reading
Unlock the Full Course
Every lesson, the runnable examples, and the finished build — yours to keep.