blob: 875974938b625ef6d5e87dd7bc4ff9cfd6225796 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
extends Node2D
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass
func _on_area_2d_body_entered(body):
if body.name == "Player":
Stats.money += 5
var popuptween = create_tween()
popuptween.tween_property($"../MoneySpent", "position", position - Vector2(888,0), 0.2)
print("Oh no! Victor spent some money!")
Stats.victorannoyed += 1
self.queue_free()
|