Racing game maker: handling is a feel, and feel is tuned by driving
A racing game is two problems: how the car feels and where the track goes. Neither is solved by a description. Both get solved by driving it and changing something.
Handling is the whole game
Everything else in a racing game is decoration around how the vehicle responds. Grip, weight, how quickly it rotates, how much the back steps out, whether braking loads the front. Those numbers are the difference between a car that is fun to drive round an empty car park and one that is a chore on the best track ever made.
You cannot specify that in a sentence. Nobody can. What you can do is drive it, notice it turns in too sharply, say so, drive the revision, and repeat until it is right. That loop is short here because Director 1 rewrites the GDScript in your project as fast as you can describe the problem.
Expect to spend a lot of the project on this, and expect that to be the enjoyable part.
Tracks are terrain plus intent
You build the track by hand in the builder. Shape the ground, run the route over it, decide where it climbs and where it drops, put the barriers where they need to be. Terrain, water and weather are direct controls, so a coastal circuit in the rain is a thing you set rather than hope for.
Track design has rules of thumb worth knowing: corners that reward the brave line, a straight long enough to make overtaking possible, a rhythm that varies rather than a sequence of identical bends. None of that is automatic and none of it comes from a generator. It comes from driving your own track and being bored by parts of it.
Elevation change is the cheapest thing that makes a track interesting and the thing beginners most often forget.
The systems around the race
Lap timing, checkpoints, the reset when you fall off, opponent behaviour, a grid position, a finishing order, a time trial ghost. All of that is code and none of it is your problem to type. Describe it, Director 1 writes it into the project, you play it.
Opponent AI is worth being specific about. "The AI should brake later than me on the second corner and be beatable on the third lap" is a better instruction than "make the AI good", and it is the kind of instruction you can only give after you have raced it a few times.
Why it runs locally
Racing is the genre least tolerant of a bad frame time. Input lag and stutter destroy the feel that the rest of the work is spent building.
Stage Engine is a desktop app for Mac and Windows with Godot bundled inside. When you press play, your own machine renders the game with your own graphics card. Nothing is streamed and there is no browser tab in the way.
Building needs an internet connection, since Director 1, asset generation and world data all come over the network. Driving what you built does not.
What it costs
Free to download with a free plan. Indie is $10 a month, Pro is $50. The paid plans carry more usage of the AI, which matters here because handling tuning is a lot of small requests.
Sound and camera do half the work
Speed in a racing game is mostly a trick played on the eyes and ears. Field of view that widens as you accelerate, a camera that lags slightly under power, road detail rushing past close to the ground, and engine noise that responds to the throttle rather than the speed.
None of that changes the physics and all of it changes how fast the game feels. It is worth tuning deliberately rather than leaving to whatever the defaults happen to be.
Ask for those as behaviours, then drive and adjust. A car that is genuinely quick and feels slow is a common and fixable problem, and it is usually the camera.
Questions
- Is there a built-in vehicle physics preset?
- There is no menu of car types. The handling is written as code to your description and then tuned by driving it, which is how you get something that feels like yours.
- Can I make an arcade racer rather than a sim?
- Yes. Arcade and simulation are both just different sets of rules, and neither is more supported than the other.
- How do I build a track?
- By hand, in the builder. You shape terrain and place the route and the scenery directly with a mouse.
- Can I have AI opponents?
- Yes. Describe how they should drive and Director 1 writes it. Be specific after you have raced them.
- Does it need a good computer?
- Your machine renders the game, so smooth frames on a detailed track want real hardware.