summaryrefslogtreecommitdiff
path: root/Scenes/Door.gd
blob: c366514845e98aae749abe0abc235c0d188b76bf (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
extends Entity

class_name Door

export(bool) var is_open = false

onready var mesh = $Mesh

func _ready():
	._ready()
	add_to_group("doors")

func cor_open(args : Array):
	var duration = args[0]
	var time = 0

	while true:
		time = min(time + get_process_delta_time(), duration)
		var weight = time / duration

		mesh.translation = Vector3(0, 0.5 - weight * 0.95, 0)

		if time >= duration:
			break

		yield(get_tree(), "idle_frame")

	is_open = true