blob: da09c703bc1bb97aa5de763e9ee94c8208c53ee8 (
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
33
34
35
36
37
|
using System;
public class AutoOpenDoor : ManualDoor
{
private const float ClosedDuration = 10f;
public SystemTypes Room;
public float ClosedTimer;
public float CooldownTimer;
public bool DoUpdate(float dt)
{
this.CooldownTimer = Math.Max(this.CooldownTimer - dt, 0f);
if (this.ClosedTimer > 0f)
{
this.ClosedTimer = Math.Max(this.ClosedTimer - dt, 0f);
if (this.ClosedTimer == 0f)
{
this.SetDoorway(true);
return true;
}
}
return false;
}
public override void SetDoorway(bool open)
{
if (!open)
{
this.ClosedTimer = 10f;
this.CooldownTimer = 30f;
}
base.SetDoorway(open);
}
}
|