mirror of
https://github.com/SWG-Source/client-tools.git
synced 2026-09-11 23:45:12 -04:00
this at least adds a checkbox but we'll need to prob edit an stf file and
also make it actually send/set the objvar
This commit is contained in:
@@ -1,21 +1,21 @@
|
||||
Microsoft Visual Studio Solution File, Format Version 8.00
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SoePix", "SoePix.vcproj", "{700EC69B-692D-4218-AA90-23CAE933E587}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 14
|
||||
VisualStudioVersion = 14.0.25123.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SoePix", "SoePix.vcxproj", "{700EC69B-692D-4218-AA90-23CAE933E587}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfiguration) = preSolution
|
||||
Debug = Debug
|
||||
Release = Release
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|x86 = Debug|x86
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfiguration) = postSolution
|
||||
{700EC69B-692D-4218-AA90-23CAE933E587}.Debug.ActiveCfg = Debug|Win32
|
||||
{700EC69B-692D-4218-AA90-23CAE933E587}.Debug.Build.0 = Debug|Win32
|
||||
{700EC69B-692D-4218-AA90-23CAE933E587}.Release.ActiveCfg = Release|Win32
|
||||
{700EC69B-692D-4218-AA90-23CAE933E587}.Release.Build.0 = Release|Win32
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{700EC69B-692D-4218-AA90-23CAE933E587}.Debug|x86.ActiveCfg = Debug|Win32
|
||||
{700EC69B-692D-4218-AA90-23CAE933E587}.Debug|x86.Build.0 = Debug|Win32
|
||||
{700EC69B-692D-4218-AA90-23CAE933E587}.Release|x86.ActiveCfg = Release|Win32
|
||||
{700EC69B-692D-4218-AA90-23CAE933E587}.Release|x86.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityAddIns) = postSolution
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
||||
@@ -400,6 +400,7 @@ namespace
|
||||
|
||||
float ms_playerCameraHeight = 1.4f;
|
||||
|
||||
bool ms_autoLootChronicleRelics = false;
|
||||
bool ms_autoLootCorpses = false;
|
||||
|
||||
float ms_speakerVolume = 0.5f;
|
||||
@@ -849,6 +850,7 @@ void CuiPreferences::install ()
|
||||
|
||||
REGISTER_OPTION(playerCameraHeight);
|
||||
|
||||
REGISTER_OPTION(autoLootChronicleRelics);
|
||||
REGISTER_OPTION(autoLootCorpses);
|
||||
|
||||
REGISTER_OPTION(speakerVolume);
|
||||
@@ -3531,6 +3533,20 @@ bool CuiPreferences::getShowAppearanceInventory()
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
bool CuiPreferences::getLootChronRelics()
|
||||
{
|
||||
return ms_autoLootChronicleRelics;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
void CuiPreferences::setLootChronRelics(bool loot)
|
||||
{
|
||||
ms_autoLootChronicleRelics = loot;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
void CuiPreferences::setAutoLootCorpses(bool loot)
|
||||
{
|
||||
ms_autoLootCorpses = loot;
|
||||
|
||||
@@ -562,6 +562,9 @@ public:
|
||||
static bool getShowAppearanceInventory();
|
||||
static void setShowAppearanceInventory(bool show);
|
||||
|
||||
static bool getLootChronRelics();
|
||||
static void setLootChronRelics(bool loot);
|
||||
|
||||
static bool getAutoLootCorpses();
|
||||
static void setAutoLootCorpses(bool loot);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user