mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-18 14:09:22 +00:00
Triangular radar blips
This commit is contained in:
parent
a47f78758c
commit
365f9e9caf
5 changed files with 100 additions and 1 deletions
|
@ -45,6 +45,13 @@ enum eRadarSprite
|
|||
RADAR_SPRITE_COUNT = 21,
|
||||
};
|
||||
|
||||
enum
|
||||
{
|
||||
BLIP_MODE_TRIANGULAR_UP = 0,
|
||||
BLIP_MODE_TRIANGULAR_DOWN,
|
||||
BLIP_MODE_SQUARE,
|
||||
};
|
||||
|
||||
struct CBlip
|
||||
{
|
||||
uint32 m_nColor;
|
||||
|
@ -130,6 +137,7 @@ public:
|
|||
static void SetRadarMarkerState(int32 i, bool flag);
|
||||
static void ShowRadarMarker(CVector pos, uint32 color, float radius);
|
||||
static void ShowRadarTrace(float x, float y, uint32 size, uint8 red, uint8 green, uint8 blue, uint8 alpha);
|
||||
static void ShowRadarTraceWithHeight(float x, float y, uint32 size, uint8 red, uint8 green, uint8 blue, uint8 alpha, uint8 mode);
|
||||
static void Shutdown();
|
||||
static void StreamRadarSections(const CVector &posn);
|
||||
static void StreamRadarSections(int32 x, int32 y);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue