ct-js / docs.ctjs.rocks

Official docs of ct.js game engine
https://docs.ctjs.rocks/
74 stars 46 forks source link

Update platformer v4 #130

Closed firecakes closed 8 months ago

firecakes commented 8 months ago

Updates images, code snippets, and uses new v4 features for the platformer tutorial.

One note is the example code has a bug in the Platform template, the Frame Start event line robot = place.occupied(this, this.x, this.y - 1, 'Robot'); should be robot = place.meet(this, this.x, this.y - 1, 'Robot'); instead in the correct example.