1
0
mirror of https://github.com/HarukaKinen/Sinmai-Internal-Damage.git synced 2024-11-12 01:30:47 +01:00

Fix Skin changer with SDGB

This commit is contained in:
Moe Kotoki 2022-04-05 23:58:08 +08:00
parent e09008505e
commit 7f7d0de443
3 changed files with 89 additions and 76 deletions

View File

@ -62,6 +62,15 @@ namespace Sinmai.Functions
else
Render.DrawString(new Vector2(200, 210), "null object", false);#1#
}*/
private static UserInformationController getUserInformationController()
{
UserInformationController UserInformationController = GameObject
.Find("Sub/UI_UserInformation/UI_UserData/")
.GetComponent<UserInformationController>();
return UserInformationController;
}
public static void PlayerOneOnly()
{
@ -71,43 +80,29 @@ namespace Sinmai.Functions
{
if (!Settings.RateCheckBox) return;
// GameObject 必须在 Feature 激活后调用来避免函数外迴圈
UserInformationController lUserInformationController = GameObject
.Find("LeftMonitor/CommonProcess(Clone)/RearCanvas/Sub/UI_UserInformation/UI_UserData/")
.GetComponent<UserInformationController>();
UserInformationController rUserInformationController = GameObject
.Find("RightMonitor/CommonProcess(Clone)/RearCanvas/Sub/UI_UserInformation/UI_UserData/")
.GetComponent<UserInformationController>();
UserInformationController UserInformationController = getUserInformationController();
var rate = uint.Parse(Settings.RatingValue, NumberStyles.Integer);
if (lUserInformationController != null)
if (UserInformationController != null)
{
lUserInformationController.SetUserRating(rate);
UserInformationController.SetUserRating(rate);
}
}
public static void UdemaeChanger()
{
if (!Settings.UdemaeCheckBox) return;
UserInformationController lUserInformationController = GameObject
.Find("LeftMonitor/CommonProcess(Clone)/RearCanvas/Sub/UI_UserInformation/UI_UserData/")
.GetComponent<UserInformationController>();
UserInformationController rUserInformationController = GameObject
.Find("RightMonitor/CommonProcess(Clone)/RearCanvas/Sub/UI_UserInformation/UI_UserData/")
.GetComponent<UserInformationController>();
UserInformationController UserInformationController = getUserInformationController();
int udemaeId = int.Parse(Settings.UdemaeValue);
var udemae = (UdemaeID) udemaeId;
if (lUserInformationController != null)
if (UserInformationController != null)
{
lUserInformationController.SetUdemae(udemae);
UserInformationController.SetUdemae(udemae);
}
}

View File

@ -33,19 +33,25 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="AMDaemon.NET">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\AMDaemon.NET.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\AMDaemon.NET.dll</HintPath>
</Reference>
<Reference Include="Assembly-CSharp">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\Assembly-CSharp.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="Assembly-CSharp - 副本">
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\Assembly-CSharp - 副本.dll</HintPath>
</Reference>
<Reference Include="Assembly-CSharp-firstpass">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\Assembly-CSharp-firstpass.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\Assembly-CSharp-firstpass.dll</HintPath>
</Reference>
<Reference Include="ChimeLib.NET">
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\ChimeLib.NET.dll</HintPath>
</Reference>
<Reference Include="Mono.Posix">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\Mono.Posix.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\Mono.Posix.dll</HintPath>
</Reference>
<Reference Include="Mono.Security">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\Mono.Security.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\Mono.Security.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
@ -55,6 +61,9 @@
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
<Reference Include="TextMeshPro-1.0.55.2017.1.0b12">
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\TextMeshPro-1.0.55.2017.1.0b12.dll</HintPath>
</Reference>
<Reference Include="Unity.Analytics.DataPrivacy">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\Unity.Analytics.DataPrivacy.dll</HintPath>
</Reference>
@ -62,133 +71,139 @@
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\Unity.TextMeshPro.dll</HintPath>
</Reference>
<Reference Include="UnityEngine">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AccessibilityModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.AccessibilityModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.AccessibilityModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AIModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.AIModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.AIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AnimationModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.AnimationModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.AnimationModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ARModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.ARModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.ARModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AssetBundleModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.AssetBundleModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.AssetBundleModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AudioModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.AudioModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.AudioModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.BaselibModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.BaselibModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ClothModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.ClothModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.ClothModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ClusterInputModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.ClusterInputModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.ClusterInputModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ClusterRendererModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.ClusterRendererModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.ClusterRendererModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.CoreModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.CoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CrashReportingModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.CrashReportingModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.CrashReportingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.DirectorModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.DirectorModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.DirectorModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.FileSystemHttpModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.FileSystemHttpModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.GameCenterModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.GameCenterModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.GameCenterModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.GridModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.GridModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.GridModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.HotReloadModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.HotReloadModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ImageConversionModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.ImageConversionModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.ImageConversionModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.IMGUIModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.IMGUIModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.IMGUIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.InputModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.InputModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.InputModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.JSONSerializeModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.JSONSerializeModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.JSONSerializeModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.LocalizationModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.LocalizationModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.Networking">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.Networking.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.Networking.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ParticlesLegacyModule">
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.ParticlesLegacyModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ParticleSystemModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.ParticleSystemModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.ParticleSystemModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.PerformanceReportingModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.PerformanceReportingModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.PerformanceReportingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.Physics2DModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.Physics2DModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.Physics2DModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.PhysicsModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.PhysicsModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.PhysicsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ProfilerModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.ProfilerModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.ScreenCaptureModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.ScreenCaptureModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.ScreenCaptureModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.SharedInternalsModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.SharedInternalsModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.SharedInternalsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.SpatialTracking">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.SpatialTracking.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.SpatialTracking.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.SpriteMaskModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.SpriteMaskModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.SpriteMaskModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.SpriteShapeModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.SpriteShapeModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.SpriteShapeModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.StandardEvents">
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.StandardEvents.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.StreamingModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.StreamingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.StyleSheetsModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.StyleSheetsModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.StyleSheetsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.SubstanceModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.SubstanceModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TerrainModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.TerrainModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.TerrainModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TerrainPhysicsModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.TerrainPhysicsModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.TerrainPhysicsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TextCoreModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.TextCoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TextRenderingModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.TextRenderingModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.TextRenderingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TilemapModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.TilemapModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.TilemapModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.Timeline">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.Timeline.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.Timeline.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TimelineModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.TimelineModule.dll</HintPath>
@ -197,25 +212,25 @@
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.TLSModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.UI.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.UI.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UIElementsModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.UIElementsModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.UIElementsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UIModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.UIModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.UIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UmbraModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.UmbraModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UNETModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.UNETModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.UNETModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityAnalyticsModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.UnityAnalyticsModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.UnityAnalyticsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityConnectModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.UnityConnectModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.UnityConnectModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityTestProtocolModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.UnityTestProtocolModule.dll</HintPath>
@ -224,37 +239,40 @@
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.UnityWebRequestAssetBundleModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestAudioModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.UnityWebRequestAudioModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.UnityWebRequestAudioModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.UnityWebRequestModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.UnityWebRequestModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestTextureModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.UnityWebRequestTextureModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.UnityWebRequestTextureModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestWWWModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.UnityWebRequestWWWModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.UnityWebRequestWWWModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.VehiclesModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.VehiclesModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.VehiclesModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.VFXModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.VFXModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.VideoModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.VideoModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.VideoModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.VRModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.VRModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.VRModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.WebModule">
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.WebModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.WindModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.WindModule.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\UnityEngine.WindModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.XRModule">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\UnityEngine.XRModule.dll</HintPath>
</Reference>
<Reference Include="zxing.unity">
<HintPath>..\..\..\GameLibray\maimai_Splash\Package\Sinmai_Data\Managed\zxing.unity.dll</HintPath>
<HintPath>..\..\..\Arcade\SDGB1.11\Package\Sinmai_Data\Managed\zxing.unity.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>

View File

@ -28,7 +28,7 @@ namespace Sinmai.UI
if (MenuToggle)
Window = GUILayout.Window(0, Window, RenderMenu, "Internal Damage for Sinmai");
Render.DrawString(new Vector2(200, 185), "Sinmai-Internal-Damage");
Render.DrawString(new Vector2(200, 200), "Build: b20220121-G");
Render.DrawString(new Vector2(200, 200), "Build: b20220405-A");
// Call Functions in Functions
// what the fuck is this named