Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Loading optimizations #269

Open
wants to merge 10 commits into
base: dev
Choose a base branch
from
2 changes: 2 additions & 0 deletions GameData/KSPCommunityFixes/Settings.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,8 @@ KSP_COMMUNITY_FIXES
// but this helps a bit in other cases as well.
FloatingOriginPerf = true

PartParsingPerf = true

// ##########################
// Modding
// ##########################
Expand Down
6 changes: 5 additions & 1 deletion KSPCommunityFixes/KSPCommunityFixes.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\packages\Krafs.Publicizer.2.2.1\build\Krafs.Publicizer.props" Condition="Exists('..\packages\Krafs.Publicizer.2.2.1\build\Krafs.Publicizer.props')" />
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
Expand Down Expand Up @@ -155,6 +155,8 @@
<Compile Include="Library\LocalizationUtils.cs" />
<Compile Include="Library\Numerics.cs" />
<Compile Include="Library\ObjectPool.cs" />
<Compile Include="Library\MuParser.cs" />
<Compile Include="Library\ShaderHelpers.cs" />
<Compile Include="Modding\KSPFieldEnumDesc.cs" />
<Compile Include="Modding\ModUpgradePipeline.cs" />
<Compile Include="Performance\ForceSyncSceneSwitch.cs" />
Expand All @@ -173,6 +175,7 @@
<Compile Include="Performance\FasterPartFindTransform.cs" />
<Compile Include="Performance\FastLoader.cs" />
<Compile Include="Performance\FlightIntegratorPerf.cs" />
<Compile Include="Performance\PartParsingPerf.cs" />
<Compile Include="Performance\IMGUIOptimization.cs" />
<Compile Include="Performance\LocalizerPerf.cs" />
<Compile Include="Performance\LowerMinPhysicsDTPerFrame.cs" />
Expand Down Expand Up @@ -254,6 +257,7 @@
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup />
<!--Project-specfic configuration-->
<PropertyGroup>
<RepoRootPath>$(SolutionDir)</RepoRootPath>
Expand Down
Loading
Loading