mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-24 21:11:26 +00:00
23 lines
342 B
Text
23 lines
342 B
Text
|
class DukeDoorShock : DukeActor
|
||
|
{
|
||
|
default
|
||
|
{
|
||
|
shade -12;
|
||
|
statnum STAT_STANDABLE;
|
||
|
}
|
||
|
|
||
|
override void Initialize()
|
||
|
{
|
||
|
self.cstat |= CSTAT_SPRITE_BLOCK_ALL;
|
||
|
}
|
||
|
|
||
|
|
||
|
override void Tick()
|
||
|
{
|
||
|
let sectp = self.sector;
|
||
|
double j = abs(sectp.ceilingz - sectp.floorz) / 128.;
|
||
|
self.scale = (0.25, 0.0625 + j);
|
||
|
self.pos.Z = sectp.floorz;
|
||
|
}
|
||
|
}
|