Skip to content

Commit bfca8d3

Browse files
committed
Hmm
1 parent 6bd54ba commit bfca8d3

File tree

5 files changed

+18
-9
lines changed

5 files changed

+18
-9
lines changed

GalacticScale2/Scripts/GalacticScale2.0/Patches/-Debug/Debug.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ public static bool LoadData(UIAchievementPanel __instance)
6666
[HarmonyPostfix, HarmonyPatch(typeof(WarningSystem), "Init")]
6767
public static void Init(ref WarningSystem __instance)
6868
{
69-
//__instance.warningCounts = new int[65536000];
70-
//__instance.warningSignals = new int[2048000];
71-
//__instance.focusDetailCounts = new int[65536000];
72-
//__instance.focusDetailSignals = new int[2048000];
73-
var l = GameMain.galaxy.starCount * 1024;
69+
__instance.warningCounts = new int[GameMain.galaxy.starCount * 1024];
70+
__instance.warningSignals = new int[GameMain.galaxy.starCount * 32];
71+
__instance.focusDetailCounts = new int[GameMain.galaxy.starCount * 1024];
72+
__instance.focusDetailSignals = new int[GameMain.galaxy.starCount * 32];
73+
var l = GameMain.galaxy.starCount * 400;
7474
__instance.astroArr = new AstroPoseR[l];
7575
__instance.astroBuffer = new ComputeBuffer(l, 32, ComputeBufferType.Default);
7676
}

GalacticScale2/obj/DSP_Plugins.GalacticScale.csproj.nuget.dgspec.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@
2424
],
2525
"sources": {
2626
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
27-
"https://api.nuget.org/v3/index.json": {}
27+
"https://api.nuget.org/v3/index.json": {},
28+
"https://nuget.bepinex.dev/v3/index.json": {},
29+
"https://nuget.bepinex.dev/v3/index.json": {}
2830
},
2931
"frameworks": {
3032
"net48": {
@@ -52,7 +54,7 @@
5254
"version": "[*-*, )"
5355
},
5456
"UnityEngine.Modules": {
55-
"include": "Compile",
57+
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
5658
"suppressParent": "All",
5759
"target": "Package",
5860
"version": "[2018.4.12, )"

GalacticScale2/obj/DSP_Plugins.GalacticScale.csproj.nuget.g.props

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8" standalone="no"?>
22
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
4-
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">False</RestoreSuccess>
4+
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
55
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
66
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
77
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
@@ -15,4 +15,8 @@
1515
<PropertyGroup>
1616
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
1717
</PropertyGroup>
18+
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
19+
<PkgBepInEx_Core Condition=" '$(PkgBepInEx_Core)' == '' ">C:\Users\inno\.nuget\packages\bepinex.core\5.4.17</PkgBepInEx_Core>
20+
<PkgBepInEx_Analyzers Condition=" '$(PkgBepInEx_Analyzers)' == '' ">C:\Users\inno\.nuget\packages\bepinex.analyzers\1.0.7</PkgBepInEx_Analyzers>
21+
</PropertyGroup>
1822
</Project>

GalacticScale2/obj/DSP_Plugins.GalacticScale.csproj.nuget.g.targets

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,7 @@
33
<PropertyGroup>
44
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
55
</PropertyGroup>
6+
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
7+
<Import Project="$(NuGetPackageRoot)bepinex.core\5.4.17\build\BepInEx.Core.targets" Condition="Exists('$(NuGetPackageRoot)bepinex.core\5.4.17\build\BepInEx.Core.targets')" />
8+
</ImportGroup>
69
</Project>

thunderstore.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ websiteUrl = "https://github.com/Touhma/DSP_Plugins"
1010
containsNsfwContent = false
1111

1212
[package.dependencies]
13-
"xiaoye97-BepInEx-5.4.17"= "5.4.17"
13+
"xiaoye97-BepInEx" = "5.4.17"
1414

1515
[build]
1616
icon = "./Package/icon.png"

0 commit comments

Comments
 (0)