mirror of
https://github.com/Steffo99/pineapple-surf.git
synced 2024-11-22 15:54:20 +00:00
10 lines
188 B
GDScript3
10 lines
188 B
GDScript3
|
extends RigidBody3D
|
||
|
|
||
|
|
||
|
@export var value = 5
|
||
|
|
||
|
|
||
|
func _on_collectible_by_player_collected():
|
||
|
var ps: PeaShooter = Singletons.player.get_node("Head/OnHand/PeaShooter")
|
||
|
ps.remaining += value
|