blob: 620cea583506660cbc5d280496b67475dddfeaa4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
extends Entity
class_name Crystal
export(bool) var is_active = false
export(Color) var active_color
onready var mesh : MeshInstance = $Mesh
func _ready():
._ready()
add_to_group("crystals")
func cor_activate(args : Array):
var duration = args[0]
var time = 0
var material = mesh.get_active_material(0)
var color = material.albedo_color
while true:
time = min(time + get_process_delta_time(), duration)
var weight = time / duration
material.albedo_color = color.linear_interpolate(active_color, weight)
if time >= duration:
break
yield(get_tree(), "idle_frame")
is_active = true
|