Godot Playground
Running Godot 4.7 stable

Godot in the browser

A playground for the Godot engine. Open a tab, write a script, hit play. Nothing to download and nothing to configure.

Everything runs where the tab is open

Scripts
main
Shaders
outline
1extends Node
2
3func _ready():
4 var bt = Button.new()
5
6 bt.text = 'Play'
7 add_child(bt)

Scripts and shaders

Write GDScript and shaders and see the result while the project runs. No install, no project setup, no waiting for an import.

14func _process(delta: float):
15 var bt = Button.new()
16
17 bt.press 
pressed
pressing
process_mode

GDScript intellisense

Completion for the engine API as you type, with the signatures and properties of the class you are on.

Project name
Title of the project
Password
Used for project editing later on.
••••••
Share this project

Share your work

Publish a project and send the link. Anyone opens it in the browser and runs the same thing you built.

Last public projects

Everything below was built and published from the browser.