mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-06 21:11:43 +00:00
5ac0789e6e
meaningful message instead of the nondescript 'Tried to spawn a class-less actor'. - Converted AGlassJunk to DECORATE and made the spawn function a little more flexible so that replacing the shard is easier. - Converted ABloodSplatter to DECORATE. - Removed A_Jiggle because it never worked properly. - Changed DECORATE parser to allow commas between arguments for multi- argument properties. For all newly added properties this format will become mandatory but for backwards compatibility it is optional for old ones. - Added a check for negative indices to TAutoGrowArray::SetVal to prevent passing an index of -1 from crashing the game. - Fixed: Morphing must clear the weapon's flash sprite. - Fixed: Resurrecting a morphed player caused a crash. - Fixed: Random sounds that recursively refer to themselves caused a stack overflow. Now they print a warning and get ignored. SVN r277 (trunk)
25 lines
No EOL
297 B
Text
25 lines
No EOL
297 B
Text
// Blood splatter -----------------------------------------------------------
|
|
|
|
ACTOR BloodSplatter
|
|
{
|
|
Game Raven
|
|
Radius 2
|
|
Height 4
|
|
+NOBLOCKMAP
|
|
+MISSILE
|
|
+DROPOFF
|
|
+NOTELEPORT
|
|
+CANNOTPUSH
|
|
Mass 5
|
|
States
|
|
{
|
|
Spawn:
|
|
BLUD CBA 8
|
|
Stop
|
|
Death:
|
|
BLUD A 6
|
|
Stop
|
|
}
|
|
}
|
|
|
|
|