RR: Set Route66's Gator's size explicitly.

The CON code for this sets its correct size with 'sizeto' which is an animating instruction so it is clearly visible when they shrink to their proper size.
This now sets this size in the actual spawn function so that no shrinking animation can be seen.
This commit is contained in:
Christoph Oelckers 2023-12-14 19:03:28 +01:00
parent 1e618d2fdb
commit 925ad53daf

View file

@ -13,4 +13,11 @@ class RedneckGator : DukeActor
+INTERNAL_BADGUY; +INTERNAL_BADGUY;
+KILLCOUNT; +KILLCOUNT;
} }
override void Initialize(DukeActor spawner)
{
self.scale = (0.28125, 0.28125);
self.setClipDistFromTile();
}
} }