mirror of
https://github.com/Steffo99/pineapple-surf.git
synced 2024-11-25 17:24:19 +00:00
Add debug growth to cycle plant growth
This commit is contained in:
parent
4c031db83d
commit
5e029aa616
1 changed files with 8 additions and 0 deletions
|
@ -7,6 +7,7 @@ signal on_complete()
|
||||||
|
|
||||||
@onready var growth_timer: Timer = $GrowthTimer
|
@onready var growth_timer: Timer = $GrowthTimer
|
||||||
@onready var sprout_mesh: MeshInstance3D = $Plant/Sprout
|
@onready var sprout_mesh: MeshInstance3D = $Plant/Sprout
|
||||||
|
@export var debug_growth: bool = false
|
||||||
|
|
||||||
|
|
||||||
func plant():
|
func plant():
|
||||||
|
@ -19,8 +20,15 @@ func complete():
|
||||||
if not growth_timer.is_stopped():
|
if not growth_timer.is_stopped():
|
||||||
growth_timer.stop()
|
growth_timer.stop()
|
||||||
emit_signal("on_complete")
|
emit_signal("on_complete")
|
||||||
|
if debug_growth:
|
||||||
|
plant()
|
||||||
|
|
||||||
|
|
||||||
func _process(_delta):
|
func _process(_delta):
|
||||||
var scale_factor = 1 - (growth_timer.time_left / growth_timer.wait_time)
|
var scale_factor = 1 - (growth_timer.time_left / growth_timer.wait_time)
|
||||||
sprout_mesh.scale = Vector3(scale_factor, scale_factor, scale_factor)
|
sprout_mesh.scale = Vector3(scale_factor, scale_factor, scale_factor)
|
||||||
|
|
||||||
|
|
||||||
|
func _ready():
|
||||||
|
if debug_growth:
|
||||||
|
plant()
|
||||||
|
|
Loading…
Reference in a new issue