mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 04:50:26 +00:00
371712c53a
- fixed emission of the self pointer in FxVMFunctionCall. I did not realize that the self expression only sets up a register for the value, not pushing it onto the stack.
61 lines
879 B
Text
61 lines
879 B
Text
|
|
|
|
//==========================================================================
|
|
//
|
|
// Ice chunk
|
|
//
|
|
//==========================================================================
|
|
|
|
class IceChunk : Actor
|
|
{
|
|
Default
|
|
{
|
|
Radius 3;
|
|
Height 4;
|
|
Mass 5;
|
|
Gravity 0.125;
|
|
+DROPOFF
|
|
+CANNOTPUSH
|
|
+FLOORCLIP
|
|
+NOTELEPORT
|
|
+NOBLOCKMAP
|
|
+MOVEWITHSECTOR
|
|
}
|
|
native void A_IceSetTics ();
|
|
|
|
States
|
|
{
|
|
Spawn:
|
|
ICEC A 1;
|
|
ICEC ABCD 10 A_IceSetTics;
|
|
Stop;
|
|
}
|
|
}
|
|
|
|
//==========================================================================
|
|
//
|
|
// A chunk of ice that is also a player
|
|
//
|
|
//==========================================================================
|
|
|
|
class IceChunkHead : PlayerChunk
|
|
{
|
|
Default
|
|
{
|
|
Radius 3;
|
|
Height 4;
|
|
Mass 5;
|
|
Gravity 0.125;
|
|
DamageType "Ice";
|
|
+DROPOFF
|
|
+CANNOTPUSH
|
|
}
|
|
States
|
|
{
|
|
Spawn:
|
|
ICEC A 0;
|
|
ICEC A 10 A_CheckPlayerDone;
|
|
wait;
|
|
}
|
|
}
|
|
|