TmpMenu/src/core/data/gravity_presets.hpp
thehorizon84 b93a072fe6 feat: New world options + Request Gun Van anywhere (#2393)
+ 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)
2023-11-08 23:16:10 +01:00

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
});
}