The whole genre lives in the jump
Platformers are judged in the first ten seconds, entirely on how the jump feels. Flockbay makes that feel something you tune by describing and playing, rather than by editing a character controller you did not write.
Ten seconds is the whole audition
Nobody reads your platformer description. They press right, they press jump, and they decide. Gravity, jump height, the acceleration curve, how much control you keep in the air, whether a jump pressed slightly before landing still counts. Get those wrong and the level design cannot save it.
The reason so few first platformers feel good is not taste, it is iteration count. When changing gravity means editing a script you barely understand, you try three values and settle. Feel comes from trying thirty.
Flockbay changes the cost of an iteration. You say the jump is floaty at the top, Director 1 changes the code, you play it again. Thirty iterations is an afternoon.
The parts you will end up asking for
Every good platformer has a handful of forgiveness mechanics that players never notice and would miss instantly. Coyote time, so a jump still works a few frames after leaving the ledge. Input buffering, so a jump pressed just before landing fires. Variable jump height tied to how long the button is held. Corner correction, so clipping a ledge nudges you around it instead of stopping you dead.
Naming them is not required. Describing the problem is enough: "I keep falling when I swear I pressed jump on the edge." That is a solvable, well-understood problem and Director 1 writes the GDScript for it in your project.
You do not need to read the script to know whether it worked. You need to play it. That loop is the design process, not a workaround for not coding.
Levels are hand-built, and should be
Once movement feels right, a platformer is a sequence of small spaces that each teach or test one thing. The gap that shows you the jump distance. The first enemy you must jump over rather than around. The room where the two combine.
That sequence is not something to describe in a sentence and hope. You place it, play it, move the platform two units left, play it again. The builder is a builder for exactly this reason.
Which kind of space you are placing is settled before the project exists. Making one asks 2D or 3D, shown as two pictures, with no default and nothing created until you pick one. Neither is the reduced version of the other.
Pick 2D and the project opens already playable: sky, a band of scenery along the horizon, ground with a ledge cut into it, a platform floating off to one side, and a person who walks, falls and jumps under the keys you are already pressing. Seconds, not a tutorial. Moving that ledge two units left is dragging across it — ground is a tile layer built from a coverage map, so the tiles, the edges and the collision all fall out of which cells you covered, and a block you paint is standable the moment it exists.
Pick 3D and you get that side's own tools instead: terrain from elevation, water, weather, time of day. The flat world has a shorter list — ground, what is beyond it, the person, and the things you place — because water and weather have nothing to describe in a world with no depth. That is the honest scope of a flat world rather than a smaller advantage.
Nothing this genre is judged on sits on the missing part of that list. Walk and run speed, how fast the body reaches a speed and how fast it loses it, air control, gravity, jump apex, body size and step length are controls on the character body. Thirty iterations of the jump is thirty small moves rather than thirty rewrites.
The practical facts
Flockbay is a desktop app for Mac and Windows with Godot bundled inside. Press play and your game runs locally at your own framerate, which for a genre that lives on frame-accurate input is the right way round.
Your project is a real Godot project. It is not a save file only this tool can read, and Godot is open source.
Building needs an internet connection, since Director 1 and asset generation come over the network. Playing does not. Free to download, and building by hand stays free. What $10 a month adds is the AI doing the work for you: gameplay logic from Director 1, plus texture, sound, prop and rig generation.
The camera is half the feel and nobody notices it
A platformer camera is doing constant quiet work. Leading the character in the direction they are moving so you can see what is coming. Lagging slightly on landing so a fall does not lurch. Holding still in a small room instead of drifting. Looking down when you hold down.
Get it wrong and players will tell you the jump feels bad, because they cannot see the camera and they can see the character. It is one of the most common misdiagnoses in the genre.
It is also code, so it changes when you describe the problem. If a section feels claustrophobic, say so and let the camera pull back before you start rebuilding the level. Testing the cheap fix first is usually right.
Questions
- Can I tune the jump without editing code?
- Yes. Describe what feels wrong and Director 1 changes the GDScript. You play it again and decide.
- 2D or 3D?
- You pick at project creation, from two pictures, and neither is the cut-down one. A 2D project opens playable — ground, a ledge, a floating platform and a person who jumps — with gravity, air control and jump apex as controls on the body. A 3D one gets terrain, water and weather. Same app, same builder, same Director 1.
- Does it include coyote time and input buffering?
- They are code, so they get written when you ask for them. You can describe the problem rather than name the technique.
- Is it free?
- The platform is free, including the whole builder. Indie at $10 a month unlocks AI assistance, and there is a trial of the AI features on the free plan.
- Does it run in a browser?
- No. It is a desktop app for Mac and Windows and your game runs locally.
Related
Free for Mac and Windows. Spend the afternoon on the jump; it is worth it.
Download Flockbay free