Skip to content

Commit

Permalink
Merge pull request #76 from shr0x/main
Browse files Browse the repository at this point in the history
General changes & unknown arg updates
  • Loading branch information
shr0x authored Apr 21, 2024
2 parents 91df05f + 1f3359b commit 250d8c0
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 46 deletions.
1 change: 1 addition & 0 deletions packages/client/enums.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
/// <reference path="enums/console.d.ts" />
/// <reference path="enums/controls.d.ts" />
/// <reference path="enums/explosions.d.ts" />
/// <reference path="enums/camera.d.ts" />
/// <reference path="enums/hud.d.ts" />
/// <reference path="enums/inputGroup.d.ts" />
/// <reference path="enums/markers.d.ts" />
Expand Down
33 changes: 33 additions & 0 deletions packages/client/enums/camera.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
declare namespace RageEnums.Camera {
enum GraphTypes {
TYPE_LINEAR = 0,
TYPE_SIN_ACCEL_DECEL,
TYPE_ACCEL,
TYPE_DECEL,
TYPE_SLOW_IN,
TYPE_SLOW_OUT,
TYPE_SLOW_IN_OUT,
TYPE_VERY_SLOW_IN,
TYPE_VERY_SLOW_OUT,
TYPE_VERY_SLOW_IN_SLOW_OUT,
TYPE_SLOW_IN_VERY_SLOW_OUT,
TYPE_VERY_SLOW_IN_VERY_SLOW_OUT,
TYPE_EASE_IN,
TYPE_EASE_OUT,
TYPE_QUADRATIC_EASE_IN,
TYPE_QUADRATIC_EASE_OUT,
TYPE_QUADRATIC_EASE_IN_OUT,
TYPE_CUBIC_EASE_IN,
TYPE_CUBIC_EASE_OUT,
TYPE_CUBIC_EASE_IN_OUT,
TYPE_QUARTIC_EASE_IN,
TYPE_QUARTIC_EASE_OUT,
TYPE_QUARTIC_EASE_IN_OUT,
TYPE_QUINTIC_EASE_IN,
TYPE_QUINTIC_EASE_OUT,
TYPE_QUINTIC_EASE_IN_OUT,
TYPE_CIRCULAR_EASE_IN,
TYPE_CIRCULAR_EASE_OUT,
TYPE_CIRCULAR_EASE_IN_OUT
}
}
5 changes: 5 additions & 0 deletions packages/client/enums/props.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,9 @@ declare namespace RageEnums {
*/
BRACELETS = 7
}

const enum PropDamage {
LOSE_ON_DAMAGE = 0,
LOSE_HELMET_ON_HS = 1
}
}
Loading

0 comments on commit 250d8c0

Please sign in to comment.