mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-18 16:54:08 +00:00
script until 1497
This commit is contained in:
parent
e99cd8052c
commit
e5af1edcb9
10 changed files with 1149 additions and 842 deletions
|
@ -277,6 +277,16 @@ public:
|
|||
uint32 InputHowLongAgo(void);
|
||||
void SetDrunkInputDelay(int32 delay) { DrunkDrivingBufferUsed = delay; }
|
||||
|
||||
// TODO(LCS): properly, this is just to get some estimation for script
|
||||
int16 GetOddJobTrigger() { return GetRightShockJustDown(); }
|
||||
int16 GuiLeft() { return GetAnaloguePadLeft() || GetDPadLeftJustDown(); }
|
||||
int16 GuiRight() { return GetAnaloguePadRight() || GetDPadRightJustDown(); }
|
||||
int16 GuiUp() { return GetAnaloguePadUp() || GetDPadUpJustDown(); }
|
||||
int16 GuiDown() { return GetAnaloguePadDown() || GetDPadDownJustDown(); }
|
||||
int16 GuiSelect() { return GetSelect(); }
|
||||
int16 GuiBack() { return GetStart(); }
|
||||
int16 GetSkipCutscene() { return GetCrossJustDown(); }
|
||||
|
||||
#ifdef XINPUT
|
||||
void AffectFromXinput(uint32 pad);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue