rock-mod
Version:
Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.
9 lines (8 loc) • 326 B
JavaScript
export class RageGameplayManager {
setFadeOutAfterDeath(toggle) {
mp.game.gameplay.setFadeOutAfterDeath(toggle);
}
getGroundZFor3dCoord(position, ignoreWater, waterLevelCheck) {
return mp.game.gameplay.getGroundZFor3dCoord(position.x, position.y, position.z, ignoreWater, waterLevelCheck);
}
}