1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-19 13:03:11 +01:00

Peeps drawing light

This commit is contained in:
Jeroen D Stout
2016-06-04 01:02:18 +02:00
parent b60cb19939
commit 158f75b70f

View File

@@ -52,7 +52,8 @@ void peep_paint(rct_peep * peep, int imageDirection)
return;
};
lightfx_add_3d_light(peep_x, peep_y, peep_z, LIGHTFX_LIGHT_TYPE_SPOT_1);
uint32 uniqueID = RCT2_GLOBAL(0x9DE578, uint32);
lightfx_add_3d_light(uniqueID, 0x0000 | LIGHTFX_LIGHT_QUALIFIER_SPRITE, peep_x, peep_y, peep_z, LIGHTFX_LIGHT_TYPE_SPOT_1);
}
#endif