cube escape
A downloadable game for Windows
this is a game mmade in godot for the tweet tweet jam 10 this is a game with 500 charecters in scripts. you run around and try to live as long as you can. here is all the code in the scripts
extends CharacterBody2D
func _physics_process(d):
velocity = transform.x * 250
move_and_slide()
look_at(get_global_mouse_position())
func _on_area_2d_area_entered(a):
get_tree().quit()
extends Timer
func _on_timeout():
var e=load("res://s/e.tscn").instantiate()
$"..".add_child(e)
extends CharacterBody2D
func _physics_process(d):
look_at(get_tree().get_first_node_in_group("r").position)
move_and_slide()
velocity = transform.x*150
func _on_timeout():
$"..".add_child(load("res://s/e.tscn").instantiate( ))
Status | Released |
Platforms | Windows |
Author | The Outer Blue |
Genre | Survival |
Leave a comment
Log in with itch.io to leave a comment.