Files
TmpMenu/BigBaseV2/src/gui/handling/current_profile/current_profile_steering.cpp

15 lines
329 B
C++
Raw Normal View History

#include "current_profile_tabs.hpp"
namespace big
{
void tab_current_profile::tab_steering()
{
if (ImGui::BeginTabItem("Steering"))
{
ImGui::Text("Steering Lock (degrees)");
ImGui::SliderAngle("##steering lock", &g_local_player->m_vehicle->m_handling->m_steering_lock, -90.f, 90.f);
ImGui::EndTabItem();
}
}
2021-07-25 22:24:48 +02:00
}