First commit 🎉

This commit is contained in:
Tony Bark 2025-07-17 01:49:18 -04:00
commit 43ea213f9b
728 changed files with 37080 additions and 0 deletions

View file

@ -0,0 +1,17 @@
@tool
extends PopochiuRegion
#region Virtual ####################################################################################
func _on_character_entered(chr: PopochiuCharacter) -> void:
# This is optional. You can put here anything you want to happen when a
# character enters the area.
chr.modulate = tint
func _on_character_exited(chr: PopochiuCharacter) -> void:
# This is optional, too.
chr.modulate = Color.WHITE
#endregion