Add distinct graphics for parkour start

It used to be the same as the end (flag), which was a bit confusing
qteditor
Sven Eberhardt 2016-08-06 22:24:59 -04:00
parent 769fa0fbdc
commit a993b6e1ec
2 changed files with 3 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -331,7 +331,9 @@ protected func DoGraphics()
// Start & Finish.
if (cp_mode & PARKOUR_CP_Start || cp_mode & PARKOUR_CP_Finish)
{
SetGraphics("", ParkourFlag, 1, GFXOV_MODE_Base);
var gfx;
if (cp_mode & PARKOUR_CP_Start) gfx = "Start"; else gfx = "";
SetGraphics(gfx, ParkourFlag, 1, GFXOV_MODE_Base);
SetObjDrawTransform(350, 0, 2000, 0, 350, 2000, 1);
SetClrModulation(RGBa(255, 255, 255, 160) , 1);
}