mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-22 16:14:22 +00:00
30 lines
510 B
GDScript3
30 lines
510 B
GDScript3
|
extends Node
|
||
|
class_name Counter
|
||
|
|
||
|
|
||
|
signal changed(old: int, new: int)
|
||
|
|
||
|
|
||
|
@export var starting_value: int
|
||
|
|
||
|
var value: int
|
||
|
|
||
|
|
||
|
func _ready():
|
||
|
value = starting_value
|
||
|
|
||
|
func change(amount: int):
|
||
|
var old = value
|
||
|
value = amount
|
||
|
changed.emit(old, value)
|
||
|
|
||
|
func increase(amount: int = 1):
|
||
|
if amount < 0:
|
||
|
Log.w(self, "Increasing a counter by a negative value.")
|
||
|
change(value + amount)
|
||
|
|
||
|
func decrease(amount: int = 1):
|
||
|
if amount < 0:
|
||
|
Log.w(self, "Decreasing a counter by a negative value.")
|
||
|
change(value - amount)
|