mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-17 06:39:23 +00:00
ped attractor: start
This commit is contained in:
parent
dc444b9ca0
commit
81ea6f0258
7 changed files with 813 additions and 14 deletions
|
@ -3,7 +3,8 @@
|
|||
enum {
|
||||
EFFECT_LIGHT,
|
||||
EFFECT_PARTICLE,
|
||||
EFFECT_ATTRACTOR
|
||||
EFFECT_ATTRACTOR,
|
||||
EFFECT_PED_ATTRACTOR
|
||||
};
|
||||
|
||||
enum {
|
||||
|
@ -63,6 +64,11 @@ public:
|
|||
uint8 flags;
|
||||
uint8 probability;
|
||||
};
|
||||
struct PedAttractor {
|
||||
CVector useDir;
|
||||
CVector queueDir;
|
||||
int8 type;
|
||||
};
|
||||
|
||||
CVector pos;
|
||||
CRGBA col;
|
||||
|
@ -71,6 +77,7 @@ public:
|
|||
Light light;
|
||||
Particle particle;
|
||||
Attractor attractor;
|
||||
PedAttractor pedattr;
|
||||
};
|
||||
|
||||
C2dEffect(void) {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue