mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-18 23:17:52 +08:00

+ World -> Gravity Editor (with presets for ease of use) + World -> Waypoint Beacon + World -> Objective Beacon + World -> Time And Weather -> Ground Snow + Self -> Mobile -> Request Gun Van (spawns the gun van right in front of you no matter where you are)
35 lines
419 B
C++
35 lines
419 B
C++
#pragma once
|
|
|
|
namespace big
|
|
{
|
|
constexpr const static auto gravity_presets = std::to_array({
|
|
"Moon",
|
|
"Sun",
|
|
"Pluto",
|
|
"Space",
|
|
"Mercury",
|
|
"Venus",
|
|
"Earth",
|
|
"Mars",
|
|
"Jupiter",
|
|
"Saturn",
|
|
"Uranus",
|
|
"Neptune"
|
|
});
|
|
|
|
constexpr const static auto gravity_preset_values = std::to_array({
|
|
1.6f,
|
|
274.f,
|
|
0.6f,
|
|
0.f,
|
|
3.7f,
|
|
8.9f,
|
|
9.8f,
|
|
3.7f,
|
|
24.8f,
|
|
10.5f,
|
|
8.7f,
|
|
11.2f
|
|
});
|
|
}
|