basic-move-and-dodge-game

[LEARNING] basic godot game based off the tutorial by borncg on youtube
git clone git://git.figbert.com/basic-move-and-dodge-game.git
Log | Files | Refs | README

CoinSpatial.gd (120B)


      1 extends Spatial
      2 
      3 signal coin_collected
      4 
      5 func _ready():
      6 	pass
      7 
      8 func _on_coin_collected():
      9 	emit_signal("coin_collected")