first commit

This commit is contained in:
pennyrigate 2022-12-07 02:00:47 -05:00
commit 096ebe5aa4
275 changed files with 3937 additions and 0 deletions

View file

@ -0,0 +1,12 @@
extends Node2D
export var value = 1
func _ready():
$AnimationPlayer.play("glow")
func _on_Area2D_area_entered(area):
#Collect
if area.is_in_group("player"):
Game.shards += value
queue_free()