Skip to content

Commit

Permalink
Hmm
Browse files Browse the repository at this point in the history
  • Loading branch information
innominata committed Jan 4, 2022
1 parent 6bd54ba commit bfca8d3
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 9 deletions.
10 changes: 5 additions & 5 deletions GalacticScale2/Scripts/GalacticScale2.0/Patches/-Debug/Debug.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ public static bool LoadData(UIAchievementPanel __instance)
[HarmonyPostfix, HarmonyPatch(typeof(WarningSystem), "Init")]
public static void Init(ref WarningSystem __instance)
{
//__instance.warningCounts = new int[65536000];
//__instance.warningSignals = new int[2048000];
//__instance.focusDetailCounts = new int[65536000];
//__instance.focusDetailSignals = new int[2048000];
var l = GameMain.galaxy.starCount * 1024;
__instance.warningCounts = new int[GameMain.galaxy.starCount * 1024];
__instance.warningSignals = new int[GameMain.galaxy.starCount * 32];
__instance.focusDetailCounts = new int[GameMain.galaxy.starCount * 1024];
__instance.focusDetailSignals = new int[GameMain.galaxy.starCount * 32];
var l = GameMain.galaxy.starCount * 400;
__instance.astroArr = new AstroPoseR[l];
__instance.astroBuffer = new ComputeBuffer(l, 32, ComputeBufferType.Default);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
"https://api.nuget.org/v3/index.json": {},
"https://nuget.bepinex.dev/v3/index.json": {},
"https://nuget.bepinex.dev/v3/index.json": {}
},
"frameworks": {
"net48": {
Expand Down Expand Up @@ -52,7 +54,7 @@
"version": "[*-*, )"
},
"UnityEngine.Modules": {
"include": "Compile",
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
"suppressParent": "All",
"target": "Package",
"version": "[2018.4.12, )"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">False</RestoreSuccess>
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
Expand All @@ -15,4 +15,8 @@
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgBepInEx_Core Condition=" '$(PkgBepInEx_Core)' == '' ">C:\Users\inno\.nuget\packages\bepinex.core\5.4.17</PkgBepInEx_Core>
<PkgBepInEx_Analyzers Condition=" '$(PkgBepInEx_Analyzers)' == '' ">C:\Users\inno\.nuget\packages\bepinex.analyzers\1.0.7</PkgBepInEx_Analyzers>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)bepinex.core\5.4.17\build\BepInEx.Core.targets" Condition="Exists('$(NuGetPackageRoot)bepinex.core\5.4.17\build\BepInEx.Core.targets')" />
</ImportGroup>
</Project>
2 changes: 1 addition & 1 deletion thunderstore.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ websiteUrl = "https://github.com/Touhma/DSP_Plugins"
containsNsfwContent = false

[package.dependencies]
"xiaoye97-BepInEx-5.4.17"= "5.4.17"
"xiaoye97-BepInEx" = "5.4.17"

[build]
icon = "./Package/icon.png"
Expand Down

0 comments on commit bfca8d3

Please sign in to comment.