Skip to content

Commit

Permalink
Port SliderUnlocker for KKS
Browse files Browse the repository at this point in the history
  • Loading branch information
DeathWeasel1337 authored and ManlyMarco committed May 30, 2021
1 parent c877b3d commit ac1f060
Show file tree
Hide file tree
Showing 8 changed files with 231 additions and 9 deletions.
9 changes: 9 additions & 0 deletions BepisPlugins.sln
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KKS_Sideloader", "src\KKS_S
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KKS_InputUnlocker", "src\KKS_InputUnlocker\KKS_InputUnlocker.csproj", "{FAEBA074-6C5A-4D80-B1CD-ECA892CC6436}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KKS_SliderUnlocker", "src\KKS_SliderUnlocker\KKS_SliderUnlocker.csproj", "{46DA2EF5-5AB4-4B1E-AB4B-A8A76D74EA3A}"
EndProject
Global
GlobalSection(SharedMSBuildProjectFiles) = preSolution
src\Core_BGMLoader\Core_BGMLoader.projitems*{0a11411e-7798-4303-8e65-97421a30cd1a}*SharedItemsImports = 4
Expand All @@ -142,6 +144,8 @@ Global
src\Shared\Shared.projitems*{384e98f6-c66a-4280-b7ff-ae5bb594dae3}*SharedItemsImports = 4
src\Core_InputUnlocker\Core_InputUnlocker.projitems*{4393d751-efdd-4fe6-b93c-f17dda20e77a}*SharedItemsImports = 4
src\Shared\Shared.projitems*{4393d751-efdd-4fe6-b93c-f17dda20e77a}*SharedItemsImports = 4
src\Core_SliderUnlocker\Core_SliderUnlocker.projitems*{46da2ef5-5ab4-4b1e-ab4b-a8a76d74ea3a}*SharedItemsImports = 4
src\Shared\Shared.projitems*{46da2ef5-5ab4-4b1e-ab4b-a8a76d74ea3a}*SharedItemsImports = 4
src\Core_BGMLoader\Core_BGMLoader.projitems*{4bef27b4-5aac-4ab1-b43f-e85c484fc326}*SharedItemsImports = 4
src\Shared\Shared.projitems*{4bef27b4-5aac-4ab1-b43f-e85c484fc326}*SharedItemsImports = 4
src\Core_ExtensibleSaveFormat\Core_ExtensibleSaveFormat.projitems*{61e63b45-1d21-44f7-9b01-f5209c05ffb4}*SharedItemsImports = 13
Expand Down Expand Up @@ -367,6 +371,10 @@ Global
{FAEBA074-6C5A-4D80-B1CD-ECA892CC6436}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FAEBA074-6C5A-4D80-B1CD-ECA892CC6436}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FAEBA074-6C5A-4D80-B1CD-ECA892CC6436}.Release|Any CPU.Build.0 = Release|Any CPU
{46DA2EF5-5AB4-4B1E-AB4B-A8A76D74EA3A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{46DA2EF5-5AB4-4B1E-AB4B-A8A76D74EA3A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{46DA2EF5-5AB4-4B1E-AB4B-A8A76D74EA3A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{46DA2EF5-5AB4-4B1E-AB4B-A8A76D74EA3A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down Expand Up @@ -429,6 +437,7 @@ Global
{F34BB409-ECAC-435D-AD97-86E17304631A} = {72E9352E-2BEB-493C-9F75-1C12AFA67D6B}
{DCBD8213-8CFE-40A8-8971-FD02E9D556FF} = {41D78233-6980-465F-BAC5-45FCA6E0562F}
{FAEBA074-6C5A-4D80-B1CD-ECA892CC6436} = {CE8AB915-8694-4892-BD38-05CBB1AAA418}
{46DA2EF5-5AB4-4B1E-AB4B-A8A76D74EA3A} = {4A1808A4-FEA9-4BC9-A93A-9F41D457569A}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {D3F10C8B-FD6C-43DA-94B4-1D9688BBE11B}
Expand Down
53 changes: 47 additions & 6 deletions src/Core_SliderUnlocker/Core.SliderUnlocker.Hooks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Globalization;
using System.Reflection;
using UnityEngine;
#if KK || EC
#if KK || EC || KKS
using ChaCustom;
#elif AI || HS2
using CharaCustom;
Expand All @@ -27,7 +27,7 @@ public static void InstallHooks()
var arr = (float[])nomF.GetValue(null);
for (int i = 0; i < arr.Length; i++)
{
#if KK || EC
#if KK || EC || KKS
if (i == 1)
#elif AI || HS2
if (i == 9)
Expand All @@ -46,7 +46,7 @@ public static void InstallHooks()
#if !PH && !HS
private static IEnumerable<CodeInstruction> NomTheClamp(IEnumerable<CodeInstruction> instructions)
{
#if KK || EC
#if KK || EC || KKS
const string strToNom = "0.0.3";
#elif AI || HS2
const string strToNom = "0.0.2";
Expand Down Expand Up @@ -109,6 +109,47 @@ private static void GetInfoSingularPostHook(AnimationKeyInfo __instance, bool __
}
}

#if KKS
[HarmonyPrefix, HarmonyPatch(typeof(AnimationKeyInfo), nameof(AnimationKeyInfo.GetInfo),
new Type[] { typeof(string), typeof(float), typeof(Vector3), typeof(Vector3), typeof(Vector3), typeof(bool[]) },
new ArgumentType[] { ArgumentType.Normal, ArgumentType.Normal, ArgumentType.Ref, ArgumentType.Ref, ArgumentType.Ref, ArgumentType.Normal })]
private static void GetInfoPreHook(ref float __state, ref float rate)
{
__state = rate;

if (rate > 1)
rate = 1f;

if (rate < 0)
rate = 0f;
}

[HarmonyPostfix, HarmonyPatch(typeof(AnimationKeyInfo), nameof(AnimationKeyInfo.GetInfo),
new Type[] { typeof(string), typeof(float), typeof(Vector3), typeof(Vector3), typeof(Vector3), typeof(bool[]) },
new ArgumentType[] { ArgumentType.Normal, ArgumentType.Normal, ArgumentType.Ref, ArgumentType.Ref, ArgumentType.Ref, ArgumentType.Normal })]
private static void GetInfoPostHook(AnimationKeyInfo __instance, bool __result, float __state, string name, ref float rate, ref Vector3 pos, ref Vector3 rot, ref Vector3 scale, bool[] flag)
{
if (!__result)
return;
rate = __state;

if (rate < 0f || rate > 1f)
{
var dictInfo = (Dictionary<string, List<AnimationKeyInfo.AnmKeyInfo>>)akf_dictInfo.GetValue(__instance);

List<AnimationKeyInfo.AnmKeyInfo> list = dictInfo[name];

if (flag[0])
pos = SliderMath.CalculatePosition(list, rate);

if (flag[1])
rot = SliderMath.SafeCalculateRotation(rot, name, list, rate);

if (flag[2])
scale = SliderMath.CalculateScale(list, rate);
}
}
#else
[HarmonyPrefix, HarmonyPatch(typeof(AnimationKeyInfo), nameof(AnimationKeyInfo.GetInfo),
new Type[] { typeof(string), typeof(float), typeof(Vector3[]), typeof(bool[]) },
new ArgumentType[] { ArgumentType.Normal, ArgumentType.Normal, ArgumentType.Ref, ArgumentType.Normal })]
Expand All @@ -130,7 +171,6 @@ private static void GetInfoPostHook(AnimationKeyInfo __instance, bool __result,
{
if (!__result)
return;

rate = __state;

if (rate < 0f || rate > 1f)
Expand All @@ -150,8 +190,9 @@ private static void GetInfoPostHook(AnimationKeyInfo __instance, bool __result,
value[2] = SliderMath.CalculateScale(list, rate);
}
}
#endif

#if KK || EC || AI || HS2
#if KK || EC || AI || HS2 || KKS
[HarmonyPostfix, HarmonyPatch(typeof(CustomBase), nameof(CustomBase.ConvertTextFromRate))]
private static void ConvertTextFromRateHook(ref string __result, int min, int max, float value)
{
Expand Down Expand Up @@ -191,7 +232,7 @@ private static void Reload(ChaControl __instance)
}
#endif

#if KK // Prevent slider values from getting clamped to 0.2 - 0.8 range in school mode
#if KK || KKS // Prevent slider values from getting clamped to 0.2 - 0.8 range in school mode
[HarmonyPrefix, HarmonyPatch(typeof(ChaControl), nameof(ChaControl.InitShapeBody))]
private static void InitShapeBodySliderFixPre(ChaControl __instance, out bool __state)
{
Expand Down
6 changes: 3 additions & 3 deletions src/Core_SliderUnlocker/Core.SliderUnlocker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using System.Reflection;
using UnityEngine.SceneManagement;
using UnityEngine.UI;
#if KK || EC
#if KK || EC || KKS
using ChaCustom;
using TMPro;
#endif
Expand All @@ -26,7 +26,7 @@ public partial class SliderUnlocker
public const string PluginName = "Slider Unlocker";

internal static new ManualLogSource Logger;
#if KK || EC
#if KK || EC || KKS
private static readonly List<Target> _targets = new List<Target>();
#endif

Expand Down Expand Up @@ -85,7 +85,7 @@ public static void UnlockSlider(Slider _slider, float value, bool defaultRange =
}
}

#if KK || EC
#if KK || EC || KKS
protected void Start()
{
foreach (var type in typeof(CvsAccessory).Assembly.GetTypes())
Expand Down
28 changes: 28 additions & 0 deletions src/KKS_SliderUnlocker/KKS.SliderUnlocker.VoicePitch.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/*
* Code by essu
* ~ can you hear me now? ~
*/
using HarmonyLib;

namespace SliderUnlocker
{
internal static class VoicePitchUnlocker
{
private const float VanillaPitchLower = 0.94f;
private const float VanillaPitchUpper = 1.06f;
private const float VanillaPitchRange = VanillaPitchUpper - VanillaPitchLower;

public static void Init()
{
Harmony.CreateAndPatchAll(typeof(VoicePitchUnlocker));
}

[HarmonyPrefix, HarmonyPatch(typeof(ChaFileParameter), nameof(ChaFileParameter.voicePitch), MethodType.Getter)]
private static bool VoicePitchHook(ChaFileParameter __instance, ref float __result)
{
// Replace line return Mathf.Lerp(0.94f, 1.06f, this.voiceRate);
__result = VanillaPitchLower + __instance.voiceRate * VanillaPitchRange;
return false;
}
}
}
12 changes: 12 additions & 0 deletions src/KKS_SliderUnlocker/KKS.SliderUnlocker.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using BepInEx;
using BepisPlugins;

namespace SliderUnlocker
{
[BepInProcess(Constants.GameProcessName)]
[BepInPlugin(GUID, PluginName, Version)]
public partial class SliderUnlocker : BaseUnityPlugin
{
internal void Main() => VoicePitchUnlocker.Init();
}
}
117 changes: 117 additions & 0 deletions src/KKS_SliderUnlocker/KKS_SliderUnlocker.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{46DA2EF5-5AB4-4B1E-AB4B-A8A76D74EA3A}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SliderUnlocker</RootNamespace>
<AssemblyName>KKS_SliderUnlocker</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\bin\BepInEx\plugins\KKS_BepisPlugins\</OutputPath>
<DefineConstants>TRACE;DEBUG;KKS</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\bin\BepInEx\plugins\KKS_BepisPlugins\</OutputPath>
<DefineConstants>TRACE;KKS</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="0Harmony, Version=2.3.2.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\IllusionLibs.BepInEx.Harmony.2.3.2\lib\net35\0Harmony.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Assembly-CSharp, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\IllusionLibs.KoikatsuSunshine.Assembly-CSharp.2021.5.28\lib\net46\Assembly-CSharp.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="BepInEx, Version=5.4.8.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\IllusionLibs.BepInEx.5.4.8\lib\net35\BepInEx.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="BepInEx.Harmony, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\IllusionLibs.BepInEx.Harmony.2.3.2\lib\net35\BepInEx.Harmony.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Sirenix.Serialization, Version=2.1.13.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\IllusionLibs.KoikatsuSunshine.UnityEngine.CoreModule.2019.4.9\lib\net46\Sirenix.Serialization.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
<Reference Include="Unity.TextMeshPro, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\IllusionLibs.KoikatsuSunshine.Unity.TextMeshPro.2019.4.9\lib\net46\Unity.TextMeshPro.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\IllusionLibs.KoikatsuSunshine.UnityEngine.CoreModule.2019.4.9\lib\net46\UnityEngine.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\IllusionLibs.KoikatsuSunshine.UnityEngine.CoreModule.2019.4.9\lib\net46\UnityEngine.CoreModule.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine.UI, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\IllusionLibs.KoikatsuSunshine.UnityEngine.UI.2019.4.9\lib\net46\UnityEngine.UI.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="KKS.SliderUnlocker.cs" />
<Compile Include="KKS.SliderUnlocker.VoicePitch.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Analyzer Include="..\..\packages\BepInEx.Analyzers.1.0.4\analyzers\dotnet\cs\BepInEx.Analyzers.CodeFixes.dll" />
<Analyzer Include="..\..\packages\BepInEx.Analyzers.1.0.4\analyzers\dotnet\cs\BepInEx.Analyzers.dll" />
<Analyzer Include="..\..\packages\Microsoft.Unity.Analyzers.1.10.2\analyzers\dotnet\cs\Microsoft.Unity.Analyzers.dll" />
</ItemGroup>
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
<Import Project="..\Core_SliderUnlocker\Core_SliderUnlocker.projitems" Label="Shared" />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\..\packages\IllusionLibs.BepInEx.Harmony.2.3.2\build\IllusionLibs.BepInEx.Harmony.targets" Condition="Exists('..\..\packages\IllusionLibs.BepInEx.Harmony.2.3.2\build\IllusionLibs.BepInEx.Harmony.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\..\packages\IllusionLibs.BepInEx.Harmony.2.3.2\build\IllusionLibs.BepInEx.Harmony.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\IllusionLibs.BepInEx.Harmony.2.3.2\build\IllusionLibs.BepInEx.Harmony.targets'))" />
<Error Condition="!Exists('..\..\packages\IllusionLibs.KoikatsuSunshine.UnityEngine.CoreModule.2019.4.9\build\IllusionLibs.KoikatsuSunshine.UnityEngine.CoreModule.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\IllusionLibs.KoikatsuSunshine.UnityEngine.CoreModule.2019.4.9\build\IllusionLibs.KoikatsuSunshine.UnityEngine.CoreModule.targets'))" />
<Error Condition="!Exists('..\..\packages\IllusionLibs.KoikatsuSunshine.Assembly-CSharp.2021.5.28\build\IllusionLibs.KoikatsuSunshine.Assembly-CSharp.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\IllusionLibs.KoikatsuSunshine.Assembly-CSharp.2021.5.28\build\IllusionLibs.KoikatsuSunshine.Assembly-CSharp.targets'))" />
<Error Condition="!Exists('..\..\packages\IllusionLibs.KoikatsuSunshine.UnityEngine.UI.2019.4.9\build\IllusionLibs.KoikatsuSunshine.UnityEngine.UI.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\IllusionLibs.KoikatsuSunshine.UnityEngine.UI.2019.4.9\build\IllusionLibs.KoikatsuSunshine.UnityEngine.UI.targets'))" />
<Error Condition="!Exists('..\..\packages\IllusionLibs.KoikatsuSunshine.Unity.TextMeshPro.2019.4.9\build\IllusionLibs.KoikatsuSunshine.Unity.TextMeshPro.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\IllusionLibs.KoikatsuSunshine.Unity.TextMeshPro.2019.4.9\build\IllusionLibs.KoikatsuSunshine.Unity.TextMeshPro.targets'))" />
</Target>
<Import Project="..\..\packages\IllusionLibs.KoikatsuSunshine.UnityEngine.CoreModule.2019.4.9\build\IllusionLibs.KoikatsuSunshine.UnityEngine.CoreModule.targets" Condition="Exists('..\..\packages\IllusionLibs.KoikatsuSunshine.UnityEngine.CoreModule.2019.4.9\build\IllusionLibs.KoikatsuSunshine.UnityEngine.CoreModule.targets')" />
<Import Project="..\..\packages\IllusionLibs.KoikatsuSunshine.Assembly-CSharp.2021.5.28\build\IllusionLibs.KoikatsuSunshine.Assembly-CSharp.targets" Condition="Exists('..\..\packages\IllusionLibs.KoikatsuSunshine.Assembly-CSharp.2021.5.28\build\IllusionLibs.KoikatsuSunshine.Assembly-CSharp.targets')" />
<PropertyGroup>
<PostBuildEvent>IF EXIST "$(SolutionDir)PostBuild.bat" CALL "$(SolutionDir)PostBuild.bat" "$(TargetPath)" KKS</PostBuildEvent>
</PropertyGroup>
<Import Project="..\..\packages\IllusionLibs.KoikatsuSunshine.UnityEngine.UI.2019.4.9\build\IllusionLibs.KoikatsuSunshine.UnityEngine.UI.targets" Condition="Exists('..\..\packages\IllusionLibs.KoikatsuSunshine.UnityEngine.UI.2019.4.9\build\IllusionLibs.KoikatsuSunshine.UnityEngine.UI.targets')" />
<Import Project="..\..\packages\IllusionLibs.KoikatsuSunshine.Unity.TextMeshPro.2019.4.9\build\IllusionLibs.KoikatsuSunshine.Unity.TextMeshPro.targets" Condition="Exists('..\..\packages\IllusionLibs.KoikatsuSunshine.Unity.TextMeshPro.2019.4.9\build\IllusionLibs.KoikatsuSunshine.Unity.TextMeshPro.targets')" />
</Project>
4 changes: 4 additions & 0 deletions src/KKS_SliderUnlocker/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
using System.Reflection;

[assembly: AssemblyProduct("SliderUnlocker")]
[assembly: AssemblyTitle("BepisPlugins.SliderUnlocker")]
11 changes: 11 additions & 0 deletions src/KKS_SliderUnlocker/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="BepInEx.Analyzers" version="1.0.4" targetFramework="net46" developmentDependency="true" />
<package id="IllusionLibs.BepInEx" version="5.4.8" targetFramework="net46" />
<package id="IllusionLibs.BepInEx.Harmony" version="2.3.2" targetFramework="net46" />
<package id="IllusionLibs.KoikatsuSunshine.Assembly-CSharp" version="2021.5.28" targetFramework="net46" />
<package id="IllusionLibs.KoikatsuSunshine.Unity.TextMeshPro" version="2019.4.9" targetFramework="net46" />
<package id="IllusionLibs.KoikatsuSunshine.UnityEngine.CoreModule" version="2019.4.9" targetFramework="net46" />
<package id="IllusionLibs.KoikatsuSunshine.UnityEngine.UI" version="2019.4.9" targetFramework="net46" />
<package id="Microsoft.Unity.Analyzers" version="1.10.2" targetFramework="net46" developmentDependency="true" />
</packages>

0 comments on commit ac1f060

Please sign in to comment.