This game was made in 2 days for TweetTweetJam 11.

(the exe runs and looks better)

It was made using fewer than 500 characters of code (496).

It's a small puzzle game where you play as a glowing green ball pushing other balls onto buttons to open doors.

Controls: WASD

code:

extends Node3D
@export var t=0
var i=0
@export var a:Node
func tri(v):
i+=v*2-1
a.play("O"if i==t else"C")
extends Area3D
@export var c:Node
func tri(v):c.disabled=!v
extends Camera3D
@export var t:Node
func _process(d):look_at(t.global_position)
extends RigidBody3D
func _process(d):
var i=Input.get_vector("A","D","W","S")
apply_central_force(Vector3(i.x,0,i.y)*9)
extends Area3D
@export var c:Node
func en(b):c.current=1
extends Area3D
signal c
var n=0
func ch(b,i):
n+=i
c.emit(clamp(n,0,1))

(Depending on how you count, it may show up as 502 characters, but this is actually 6 separate scripts, so 6 of those line breaks are not real.)

Updated 1 day ago
Published 2 days ago
StatusReleased
PlatformsHTML5, Windows
Authorfvalenzuela
GenrePuzzle
Made withGodot

Download

Download
496.exe 98 MB

Leave a comment

Log in with itch.io to leave a comment.