From b3bf4a925292ff65e5b0b726828e04cd73f638c6 Mon Sep 17 00:00:00 2001 From: m0_75251201 Date: Sat, 1 Nov 2025 23:26:25 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E9=9A=90=E8=97=8F?= =?UTF-8?q?=E7=8A=B6=E6=80=81=E4=B8=8B=E4=BF=AE=E6=94=B9=E8=A3=85=E5=A4=87?= =?UTF-8?q?=E8=A3=85=E5=A4=87=E5=86=8D=E6=AC=A1=E6=98=BE=E7=A4=BA=E7=9A=84?= =?UTF-8?q?bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DuckovMods.sln | 6 ++ DuckovMods.sln.DotSettings.user | 1 + HideCharacter/HideCharacterComponent.cs | 38 +++++++-- HideCharacter/HideList.cs | 7 ++ HideCharacter/ModBehaviour.cs | 28 +++++-- ...EquipmentControllerChangeEquipmentModel.cs | 17 ++++ .../obj/Debug/HideCharacter.AssemblyInfo.cs | 2 +- .../HideCharacter.AssemblyInfoInputs.cache | 2 +- .../HideCharacter.csproj.nuget.dgspec.json | 2 +- .../obj/Release/HideCharacter.AssemblyInfo.cs | 2 +- .../HideCharacter.AssemblyInfoInputs.cache | 2 +- ...deCharacter.csproj.CoreCompileInputs.cache | 2 +- HideCharacter/obj/Release/HideCharacter.dll | Bin 9728 -> 11264 bytes HideCharacter/obj/project.assets.json | 2 +- HideCharacter/obj/project.nuget.cache | 2 +- .../obj/rider.project.model.nuget.info | 2 +- HideCharacter/obj/rider.project.restore.info | 2 +- HitFeedback/HitFeedback.csproj | 8 ++ HitFeedback/ModBehaviour.cs | 7 ++ ...tandard,Version=v2.1.AssemblyAttributes.cs | 4 + .../HitFeedback.AssemblyInfo.cs | 22 +++++ .../HitFeedback.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 8 ++ .../netstandard2.1/HitFeedback.assets.cache | Bin 0 -> 182 bytes .../obj/HitFeedback.csproj.nuget.dgspec.json | 73 ++++++++++++++++ .../obj/HitFeedback.csproj.nuget.g.props | 16 ++++ .../obj/HitFeedback.csproj.nuget.g.targets | 2 + ...tandard,Version=v2.1.AssemblyAttributes.cs | 4 + .../HitFeedback.AssemblyInfo.cs | 22 +++++ .../HitFeedback.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 8 ++ .../netstandard2.1/HitFeedback.assets.cache | Bin 0 -> 182 bytes HitFeedback/obj/project.assets.json | 79 ++++++++++++++++++ HitFeedback/obj/project.nuget.cache | 8 ++ HitFeedback/obj/project.packagespec.json | 1 + HitFeedback/obj/rider.project.restore.info | 1 + .../obj/Debug/SceneSnapshot.AssemblyInfo.cs | 2 +- .../SceneSnapshot.AssemblyInfoInputs.cache | 2 +- .../obj/Release/SceneSnapshot.AssemblyInfo.cs | 2 +- .../SceneSnapshot.AssemblyInfoInputs.cache | 2 +- 40 files changed, 364 insertions(+), 26 deletions(-) create mode 100644 HideCharacter/PatchCharacterEquipmentControllerChangeEquipmentModel.cs create mode 100644 HitFeedback/HitFeedback.csproj create mode 100644 HitFeedback/ModBehaviour.cs create mode 100644 HitFeedback/obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs create mode 100644 HitFeedback/obj/Debug/netstandard2.1/HitFeedback.AssemblyInfo.cs create mode 100644 HitFeedback/obj/Debug/netstandard2.1/HitFeedback.AssemblyInfoInputs.cache create mode 100644 HitFeedback/obj/Debug/netstandard2.1/HitFeedback.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 HitFeedback/obj/Debug/netstandard2.1/HitFeedback.assets.cache create mode 100644 HitFeedback/obj/HitFeedback.csproj.nuget.dgspec.json create mode 100644 HitFeedback/obj/HitFeedback.csproj.nuget.g.props create mode 100644 HitFeedback/obj/HitFeedback.csproj.nuget.g.targets create mode 100644 HitFeedback/obj/Release/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs create mode 100644 HitFeedback/obj/Release/netstandard2.1/HitFeedback.AssemblyInfo.cs create mode 100644 HitFeedback/obj/Release/netstandard2.1/HitFeedback.AssemblyInfoInputs.cache create mode 100644 HitFeedback/obj/Release/netstandard2.1/HitFeedback.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 HitFeedback/obj/Release/netstandard2.1/HitFeedback.assets.cache create mode 100644 HitFeedback/obj/project.assets.json create mode 100644 HitFeedback/obj/project.nuget.cache create mode 100644 HitFeedback/obj/project.packagespec.json create mode 100644 HitFeedback/obj/rider.project.restore.info diff --git a/DuckovMods.sln b/DuckovMods.sln index 96959f1..dd6fa68 100644 --- a/DuckovMods.sln +++ b/DuckovMods.sln @@ -7,6 +7,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SceneSnapshot", "SceneSnaps EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HideCharacter", "HideCharacter\HideCharacter.csproj", "{809F6CA1-E757-46CD-B8AB-89522D166140}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HitFeedback", "HitFeedback\HitFeedback.csproj", "{FEA30679-27B6-4413-91A5-EB08FCD9F02B}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -21,6 +23,10 @@ Global {809F6CA1-E757-46CD-B8AB-89522D166140}.Debug|Any CPU.Build.0 = Debug|Any CPU {809F6CA1-E757-46CD-B8AB-89522D166140}.Release|Any CPU.ActiveCfg = Release|Any CPU {809F6CA1-E757-46CD-B8AB-89522D166140}.Release|Any CPU.Build.0 = Release|Any CPU + {FEA30679-27B6-4413-91A5-EB08FCD9F02B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FEA30679-27B6-4413-91A5-EB08FCD9F02B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FEA30679-27B6-4413-91A5-EB08FCD9F02B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FEA30679-27B6-4413-91A5-EB08FCD9F02B}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/DuckovMods.sln.DotSettings.user b/DuckovMods.sln.DotSettings.user index b62664b..8e1b6a9 100644 --- a/DuckovMods.sln.DotSettings.user +++ b/DuckovMods.sln.DotSettings.user @@ -5,6 +5,7 @@ ForceIncluded ForceIncluded ForceIncluded + ForceIncluded ForceIncluded ForceIncluded ForceIncluded diff --git a/HideCharacter/HideCharacterComponent.cs b/HideCharacter/HideCharacterComponent.cs index 3c59f3d..3bd02b7 100644 --- a/HideCharacter/HideCharacterComponent.cs +++ b/HideCharacter/HideCharacterComponent.cs @@ -2,6 +2,7 @@ using System; using System.Collections.Generic; using System.IO; using System.Reflection; +using Duckov.Utilities; using Newtonsoft.Json; using UnityEngine; using UnityEngine.SceneManagement; @@ -12,9 +13,10 @@ namespace HideCharacter public class HideCharacterComponent : MonoBehaviour { public HideList? hideList = new HideList(); - private bool hide = false; + public bool hide { get; private set; } = false; private List rendererList = new List(); private bool needRefresh = true; + private GameObject? bodyPartObject, tail, @@ -27,11 +29,18 @@ namespace HideCharacter thighLeft, thighRight, weapon, - healthBar; + healthBar, + helmet, + headTip, + glasses, + armor, + backpack; private void OnEnable() { SceneManager.sceneLoaded += OnSceneLoaded; + + var dllDirectory = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); var configFilePath = Path.Combine(dllDirectory, "config.json"); if (File.Exists(configFilePath)) @@ -129,6 +138,21 @@ namespace HideCharacter case "RightHandSocket": weapon = child.gameObject; break; + case "HelmatSocket": + helmet= child.gameObject; + break; + case "FaceMaskSocket": + glasses = child.gameObject; + break; + case "HeadTip": + headTip= child.gameObject; + break; + case "ArmorSocket": + armor= child.gameObject; + break; + case "BackpackSocket": + backpack= child.gameObject; + break; default: if (child.gameObject.name.Contains("EyePart")) { @@ -159,7 +183,7 @@ namespace HideCharacter } } - private void SetCharacterHide(bool hide) + public void SetCharacterHide(bool hide) { if (hideList != null) { @@ -181,8 +205,12 @@ namespace HideCharacter thighRight?.SetActive(!(hide && hideList.hideThighRight)); weapon?.SetActive(!(hide && hideList.hideWeapon)); healthBar?.SetActive(!(hide && hideList.hideHealthBar)); - - + helmet?.SetActive(!(hide && hideList.hideHelmet)); + glasses?.SetActive(!(hide && hideList.hideGlasses)); + headTip?.SetActive(!(hide && hideList.hideHeadTip)); + + armor?.SetActive(!(hide && hideList.hideArmor)); + backpack?.SetActive(!(hide && hideList.hideBackpack)); } foreach (var o in rendererList) diff --git a/HideCharacter/HideList.cs b/HideCharacter/HideList.cs index c1fb1b2..f493908 100644 --- a/HideCharacter/HideList.cs +++ b/HideCharacter/HideList.cs @@ -6,6 +6,9 @@ namespace HideCharacter { public KeyCode hotkey = KeyCode.F5; + public bool hideHelmet = true; + public bool hideGlasses = true; + public bool hideHeadTip = true; public bool hideTail = true; public bool hideEyes = true; public bool hideEyebrow = true; @@ -17,5 +20,9 @@ namespace HideCharacter public bool hideThighRight = true; public bool hideWeapon = false; public bool hideHealthBar = true; + + public bool hideArmor = true; + public bool hideBackpack = true; + } } \ No newline at end of file diff --git a/HideCharacter/ModBehaviour.cs b/HideCharacter/ModBehaviour.cs index 3c65b28..891bf90 100644 --- a/HideCharacter/ModBehaviour.cs +++ b/HideCharacter/ModBehaviour.cs @@ -1,4 +1,5 @@  +using HarmonyLib; using UnityEngine; using Object = UnityEngine.Object; // 确保引入 UnityEngine 命名空间 @@ -6,33 +7,46 @@ namespace HideCharacter { public class ModBehaviour : Duckov.Modding.ModBehaviour { - private GameObject? _hideCharacterManagerGameObject=null; + public static HideCharacterComponent? hideHideCharacterManager=null; private const string CHILD_GAMEOBJECT_NAME = "HideCharacterManager"; + public string MOD_ID = "HideCharacter"; + private Harmony _harmony; + protected override void OnAfterSetup() { AddHideComponent(); + if (_harmony == null) + { + _harmony=new Harmony(MOD_ID); + _harmony.PatchAll(); + } } protected override void OnBeforeDeactivate() { RemoveHideComponent(); - + if (_harmony != null) + { + _harmony.UnpatchAll(MOD_ID); + _harmony = null; + } } private void AddHideComponent() { var childTransform = this.transform.Find(CHILD_GAMEOBJECT_NAME); if (childTransform) return; - _hideCharacterManagerGameObject = new GameObject(CHILD_GAMEOBJECT_NAME); - _hideCharacterManagerGameObject.transform.SetParent(this.transform); - _hideCharacterManagerGameObject.AddComponent(); + + var hideCharacterManagerGameObject = new GameObject(CHILD_GAMEOBJECT_NAME); + hideCharacterManagerGameObject.transform.SetParent(this.transform); + hideHideCharacterManager = hideCharacterManagerGameObject.AddComponent(); } private void RemoveHideComponent() { - if (_hideCharacterManagerGameObject) - Destroy(_hideCharacterManagerGameObject); + if (hideHideCharacterManager) + Destroy(hideHideCharacterManager?.gameObject); } } } diff --git a/HideCharacter/PatchCharacterEquipmentControllerChangeEquipmentModel.cs b/HideCharacter/PatchCharacterEquipmentControllerChangeEquipmentModel.cs new file mode 100644 index 0000000..7057d00 --- /dev/null +++ b/HideCharacter/PatchCharacterEquipmentControllerChangeEquipmentModel.cs @@ -0,0 +1,17 @@ +using HarmonyLib; + +namespace HideCharacter +{ + [HarmonyPatch(typeof(CharacterEquipmentController), "ChangeEquipmentModel")] + public class PatchCharacterEquipmentControllerChangeEquipmentModel + { + public static void Postfix(CharacterEquipmentController __instance) + { + var manage = ModBehaviour.hideHideCharacterManager; + if (manage!=null) + { + manage.SetCharacterHide(manage.hide); + } + } + } +} \ No newline at end of file diff --git a/HideCharacter/obj/Debug/HideCharacter.AssemblyInfo.cs b/HideCharacter/obj/Debug/HideCharacter.AssemblyInfo.cs index 22ffa67..a9a4564 100644 --- a/HideCharacter/obj/Debug/HideCharacter.AssemblyInfo.cs +++ b/HideCharacter/obj/Debug/HideCharacter.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("折纸的小箱子")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.1")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.1+4f144bef9a53a82ec1d3853545c53fd70357c810")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.1+5cec8711ddabae774b7b55087269b881165af0e7")] [assembly: System.Reflection.AssemblyProductAttribute("HideCharacter")] [assembly: System.Reflection.AssemblyTitleAttribute("HideCharacter")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.1")] diff --git a/HideCharacter/obj/Debug/HideCharacter.AssemblyInfoInputs.cache b/HideCharacter/obj/Debug/HideCharacter.AssemblyInfoInputs.cache index 94a851e..2646ac5 100644 --- a/HideCharacter/obj/Debug/HideCharacter.AssemblyInfoInputs.cache +++ b/HideCharacter/obj/Debug/HideCharacter.AssemblyInfoInputs.cache @@ -1 +1 @@ -fd76b68be9378d1c667546778ac0bd4b23218f667f0c3786b8ff56c86739a156 +3d62d92adb7f9a12cf46bc278adfa279e7b9149f58da50080fcbc57375d7389a diff --git a/HideCharacter/obj/HideCharacter.csproj.nuget.dgspec.json b/HideCharacter/obj/HideCharacter.csproj.nuget.dgspec.json index 18651d5..43decb3 100644 --- a/HideCharacter/obj/HideCharacter.csproj.nuget.dgspec.json +++ b/HideCharacter/obj/HideCharacter.csproj.nuget.dgspec.json @@ -5,7 +5,7 @@ }, "projects": { "D:\\vs_project\\DuckovMods\\HideCharacter\\HideCharacter.csproj": { - "version": "1.0.0", + "version": "1.0.1", "restore": { "projectUniqueName": "D:\\vs_project\\DuckovMods\\HideCharacter\\HideCharacter.csproj", "projectName": "HideCharacter", diff --git a/HideCharacter/obj/Release/HideCharacter.AssemblyInfo.cs b/HideCharacter/obj/Release/HideCharacter.AssemblyInfo.cs index 47a18fb..0fc91cf 100644 --- a/HideCharacter/obj/Release/HideCharacter.AssemblyInfo.cs +++ b/HideCharacter/obj/Release/HideCharacter.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("折纸的小箱子")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.1")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.1+4f144bef9a53a82ec1d3853545c53fd70357c810")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.1+5cec8711ddabae774b7b55087269b881165af0e7")] [assembly: System.Reflection.AssemblyProductAttribute("HideCharacter")] [assembly: System.Reflection.AssemblyTitleAttribute("HideCharacter")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.1")] diff --git a/HideCharacter/obj/Release/HideCharacter.AssemblyInfoInputs.cache b/HideCharacter/obj/Release/HideCharacter.AssemblyInfoInputs.cache index 0975b8a..0bfd46e 100644 --- a/HideCharacter/obj/Release/HideCharacter.AssemblyInfoInputs.cache +++ b/HideCharacter/obj/Release/HideCharacter.AssemblyInfoInputs.cache @@ -1 +1 @@ -14e029994881d041e839335ca4e71b2faa426461f1264f07e559e0a157e7cb69 +ee5e91bf3a8d718914859649bac466f7260515b7c2ac316863334e9e783b2fee diff --git a/HideCharacter/obj/Release/HideCharacter.csproj.CoreCompileInputs.cache b/HideCharacter/obj/Release/HideCharacter.csproj.CoreCompileInputs.cache index d75a691..3811e62 100644 --- a/HideCharacter/obj/Release/HideCharacter.csproj.CoreCompileInputs.cache +++ b/HideCharacter/obj/Release/HideCharacter.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -b9443e15139f8eafd545941efac2b184f22ba6bbbc52bcbe6e7426113697aef7 +e42d4e2d526b5e9021369ff53676b171dbb78a79de1d260ce81d1d37d0e46cf2 diff --git a/HideCharacter/obj/Release/HideCharacter.dll b/HideCharacter/obj/Release/HideCharacter.dll index 1705b20364cd839d06aad8db927179972e92599f..e4d6eaa0a1d1345493ee9e0e7bbff133c39037c3 100644 GIT binary patch literal 11264 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 delta 4083 zcmZ8keQ;FO6+idA``+7qNjBNtd=irEW zHG~Z!N~s^j*V;zKq2gHEL6k{bs~sI};SZQjr|3A+ii~y!ETdDuW?Hol^mp!V7UU-H zchA>7=e%>zy}LWPVRH4pJ*#?;pFTvH@jg`tazuov5&|jVKprYMy z_^ex!k?U8o{04PI*8wF{<&*BxNooCEsm z?o02Doww`AAJJ$Vaz&NA+PHzYN>o9S{DM;mfINZ$mb64hH~}|OOBN~Kxmwny zLa=d_Y{+$44-YLmS62?VMevEty?UaC{lq>*;mpK5&|`Qvkz*xlK_}(|a$RlrKuZ&XANZ4>ZV(vS<^HaD_~8so|8vo*h}tXfByrxk{wy$(=0rvgovN9d`j_mX89-C z=nX*1mE1KeZCn|9LD@N3NoQ=ok{rxR#$woN1pH%GGE%=?OP6HAh3dv;pq~|>M`esN zniZg5Wo+t_AT@!bCu5VBBonBZtWVA^Kb{#h=Exm#vA^u4U_ylgv??;@*2J!;e7 znKg2=QRs4`kFrL&S}K#d4J#ZGyntyY8o0Qg3l}e*DKvk8<`sU!YcyD1BY~Z@PowtK z0WsQy&`Ao?ts|+~suG{#<0l zf$Bv`xY#}MtUxW#V>`#TbF5~?dlbLW z&JoSdCU=<+*TA3Fk5 zD+usWOpPC&@%ZRMF=|$x*(iZ_)9AFQ_)4IUh#u8O(Qc-?1hvucV9^9S)=JV<3onL* zcb6}hF144GB28`L1aBb>xulr5keIk|n7A&OxL%lWkMhLtj)~tD6K*Z3g<~85p9nY? zCeO%^H(dq1Asvvka2u?Wx`tL>LcQ48AovEp$5=MH6x;;vI_xr|+WhpIL_1U&DXLIk zTQ`{I(jIa$%vG@B;8*jEpw3ToYf>@vO=t(vGnfl;3_{&w$)VxfM>(lKpm?YVh1PY` zzmPKiDRlk1mDgha5{wJMLf33d^s+GqOvU;N&EH`%? zur5U?o)W;9GUkhvX`**@UW`i7i`oXmq;j3{OR>Vprys%0q^NeAZjz?ANRy^C#v2vh zq3~}CD-|9Symp~}9`^4VjPHx{x=pFY#)vQx_-eB0v>XvORhuK|nl8Bm?pDYs!t_cu z-6-BRZ8|}WCza)YbY5#4ufg>_B}D#ci}wXXV}G$M+ys)){BzPO8FZS1s)`wu@R? ztxqEF0c)2K^eR079JclX_v=h=HXjAPsWWyee8FP+&x-y=GCieiUROA-@HvG)RNCLB zFq!m{^%(FtoSO82!FbSO{6aFmtmL~*re_r1sc>51Hf8fHP*5IRcTHB&^+! zPExUPjQ&p7S|=zj8qL4Lrdx1;!}?pmlg2y1|5~Skzcc;`%bnJT^Z`wwrbFUk`4Q}O z*Vph#G9|?{U8TE4A)I=|TsW;1Q}hT-=Bj0d>b-X={7hk7kd)#ik_%xi*Y6}PK@UvR zXXZlT7N1y4gb-Xg4^2|HXrdf?5$LCvf#q}x7@`k=^|TE%knabifgmboJi_=vaajlIHZKJXHkaNEDsPjfy%vm@m;w0wmb@IyZE!wgb zi?SZR7axw_K9F=CDZgpv)AH+tb5%vm*;6rZ=1|2!;cTfYbsnh-I7VPi94QBb9i89p zIJav5t|vbK&GK(PAsG + + + netstandard2.1 + enable + + + diff --git a/HitFeedback/ModBehaviour.cs b/HitFeedback/ModBehaviour.cs new file mode 100644 index 0000000..cc966a4 --- /dev/null +++ b/HitFeedback/ModBehaviour.cs @@ -0,0 +1,7 @@ +namespace HitFeedback +{ + public class ModBehaviour:Duckov.Modding.ModBehaviour + { + + } +} \ No newline at end of file diff --git a/HitFeedback/obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs b/HitFeedback/obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs new file mode 100644 index 0000000..348b87f --- /dev/null +++ b/HitFeedback/obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] diff --git a/HitFeedback/obj/Debug/netstandard2.1/HitFeedback.AssemblyInfo.cs b/HitFeedback/obj/Debug/netstandard2.1/HitFeedback.AssemblyInfo.cs new file mode 100644 index 0000000..88f32de --- /dev/null +++ b/HitFeedback/obj/Debug/netstandard2.1/HitFeedback.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("HitFeedback")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5cec8711ddabae774b7b55087269b881165af0e7")] +[assembly: System.Reflection.AssemblyProductAttribute("HitFeedback")] +[assembly: System.Reflection.AssemblyTitleAttribute("HitFeedback")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/HitFeedback/obj/Debug/netstandard2.1/HitFeedback.AssemblyInfoInputs.cache b/HitFeedback/obj/Debug/netstandard2.1/HitFeedback.AssemblyInfoInputs.cache new file mode 100644 index 0000000..bff5978 --- /dev/null +++ b/HitFeedback/obj/Debug/netstandard2.1/HitFeedback.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +84a0140b62d51a4d1e1db6c69a6d53266a2de1b9a06e96eda7354c706b34ce28 diff --git a/HitFeedback/obj/Debug/netstandard2.1/HitFeedback.GeneratedMSBuildEditorConfig.editorconfig b/HitFeedback/obj/Debug/netstandard2.1/HitFeedback.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ce4799a --- /dev/null +++ b/HitFeedback/obj/Debug/netstandard2.1/HitFeedback.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.RootNamespace = HitFeedback +build_property.ProjectDir = d:\vs_project\DuckovMods\HitFeedback\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = +build_property.EnableCodeStyleSeverity = diff --git a/HitFeedback/obj/Debug/netstandard2.1/HitFeedback.assets.cache b/HitFeedback/obj/Debug/netstandard2.1/HitFeedback.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..af921ad3c0c6e8c0e7f73d7a9297a086d56bfbfe GIT binary patch literal 182 zcmWIWc6a1qU|{HyR$hI^m+ehyL-*9?n<5OSGfjj1lTO{r?l`I|eQ^7=O+Yoo0w$nB z1!t?6(Bjmh;uxRQy!^8K7`?pG^wg4=g2d$P#PrnS7?5ESE>^&HUR(()h6!% literal 0 HcmV?d00001 diff --git a/HitFeedback/obj/HitFeedback.csproj.nuget.dgspec.json b/HitFeedback/obj/HitFeedback.csproj.nuget.dgspec.json new file mode 100644 index 0000000..9598bea --- /dev/null +++ b/HitFeedback/obj/HitFeedback.csproj.nuget.dgspec.json @@ -0,0 +1,73 @@ +{ + "format": 1, + "restore": { + "D:\\vs_project\\DuckovMods\\HitFeedback\\HitFeedback.csproj": {} + }, + "projects": { + "D:\\vs_project\\DuckovMods\\HitFeedback\\HitFeedback.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\vs_project\\DuckovMods\\HitFeedback\\HitFeedback.csproj", + "projectName": "HitFeedback", + "projectPath": "D:\\vs_project\\DuckovMods\\HitFeedback\\HitFeedback.csproj", + "packagesPath": "C:\\Users\\Lenovo\\.nuget\\packages\\", + "outputPath": "D:\\vs_project\\DuckovMods\\HitFeedback\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\vsShare\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Lenovo\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netstandard2.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "NETStandard.Library": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.306\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/HitFeedback/obj/HitFeedback.csproj.nuget.g.props b/HitFeedback/obj/HitFeedback.csproj.nuget.g.props new file mode 100644 index 0000000..2e378fe --- /dev/null +++ b/HitFeedback/obj/HitFeedback.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Lenovo\.nuget\packages\;D:\vsShare\NuGetPackages + PackageReference + 6.14.0 + + + + + + \ No newline at end of file diff --git a/HitFeedback/obj/HitFeedback.csproj.nuget.g.targets b/HitFeedback/obj/HitFeedback.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/HitFeedback/obj/HitFeedback.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/HitFeedback/obj/Release/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs b/HitFeedback/obj/Release/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs new file mode 100644 index 0000000..348b87f --- /dev/null +++ b/HitFeedback/obj/Release/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] diff --git a/HitFeedback/obj/Release/netstandard2.1/HitFeedback.AssemblyInfo.cs b/HitFeedback/obj/Release/netstandard2.1/HitFeedback.AssemblyInfo.cs new file mode 100644 index 0000000..7f16789 --- /dev/null +++ b/HitFeedback/obj/Release/netstandard2.1/HitFeedback.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("HitFeedback")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5cec8711ddabae774b7b55087269b881165af0e7")] +[assembly: System.Reflection.AssemblyProductAttribute("HitFeedback")] +[assembly: System.Reflection.AssemblyTitleAttribute("HitFeedback")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/HitFeedback/obj/Release/netstandard2.1/HitFeedback.AssemblyInfoInputs.cache b/HitFeedback/obj/Release/netstandard2.1/HitFeedback.AssemblyInfoInputs.cache new file mode 100644 index 0000000..20cae07 --- /dev/null +++ b/HitFeedback/obj/Release/netstandard2.1/HitFeedback.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +6dfdb835a50972dc3b35cbc3ef11e4b4945b330f1030bb4e87d430fed92effb8 diff --git a/HitFeedback/obj/Release/netstandard2.1/HitFeedback.GeneratedMSBuildEditorConfig.editorconfig b/HitFeedback/obj/Release/netstandard2.1/HitFeedback.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..a0a9fd3 --- /dev/null +++ b/HitFeedback/obj/Release/netstandard2.1/HitFeedback.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.RootNamespace = HitFeedback +build_property.ProjectDir = D:\vs_project\DuckovMods\HitFeedback\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = +build_property.EnableCodeStyleSeverity = diff --git a/HitFeedback/obj/Release/netstandard2.1/HitFeedback.assets.cache b/HitFeedback/obj/Release/netstandard2.1/HitFeedback.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..b7391ff5435764059d3908fff7c28c5f996ef88c GIT binary patch literal 182 zcmWIWc6a1qU|`sLJ;R`usbYfd>DDQ`?{P*;FWoW0e8$%Q45C|kvSvoy*#uNWEMNjE zRB*P62`x@7Dvt3<&C4&#kI~C3O;0U}DM(DtPE1cNjsY1a;bIk2Rves>Sd<#$SL&Wx K5&)GYWD@`)jwbg2 literal 0 HcmV?d00001 diff --git a/HitFeedback/obj/project.assets.json b/HitFeedback/obj/project.assets.json new file mode 100644 index 0000000..ab57196 --- /dev/null +++ b/HitFeedback/obj/project.assets.json @@ -0,0 +1,79 @@ +{ + "version": 3, + "targets": { + ".NETStandard,Version=v2.1": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + ".NETStandard,Version=v2.1": [] + }, + "packageFolders": { + "C:\\Users\\Lenovo\\.nuget\\packages\\": {}, + "D:\\vsShare\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\vs_project\\DuckovMods\\HitFeedback\\HitFeedback.csproj", + "projectName": "HitFeedback", + "projectPath": "D:\\vs_project\\DuckovMods\\HitFeedback\\HitFeedback.csproj", + "packagesPath": "C:\\Users\\Lenovo\\.nuget\\packages\\", + "outputPath": "D:\\vs_project\\DuckovMods\\HitFeedback\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\vsShare\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Lenovo\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netstandard2.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "NETStandard.Library": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.306\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/HitFeedback/obj/project.nuget.cache b/HitFeedback/obj/project.nuget.cache new file mode 100644 index 0000000..7962f63 --- /dev/null +++ b/HitFeedback/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "pzUJ9sNbgmU=", + "success": true, + "projectFilePath": "D:\\vs_project\\DuckovMods\\HitFeedback\\HitFeedback.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/HitFeedback/obj/project.packagespec.json b/HitFeedback/obj/project.packagespec.json new file mode 100644 index 0000000..8e9e923 --- /dev/null +++ b/HitFeedback/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"D:\\vs_project\\DuckovMods\\HitFeedback\\HitFeedback.csproj","projectName":"HitFeedback","projectPath":"D:\\vs_project\\DuckovMods\\HitFeedback\\HitFeedback.csproj","outputPath":"D:\\vs_project\\DuckovMods\\HitFeedback\\obj\\","projectStyle":"PackageReference","fallbackFolders":["D:\\vsShare\\NuGetPackages"],"originalTargetFrameworks":["netstandard2.1"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.300"}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\9.0.306\\RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/HitFeedback/obj/rider.project.restore.info b/HitFeedback/obj/rider.project.restore.info new file mode 100644 index 0000000..b4b6f59 --- /dev/null +++ b/HitFeedback/obj/rider.project.restore.info @@ -0,0 +1 @@ +17620100186005303 \ No newline at end of file diff --git a/SceneSnapshot/obj/Debug/SceneSnapshot.AssemblyInfo.cs b/SceneSnapshot/obj/Debug/SceneSnapshot.AssemblyInfo.cs index e446d95..cbb324c 100644 --- a/SceneSnapshot/obj/Debug/SceneSnapshot.AssemblyInfo.cs +++ b/SceneSnapshot/obj/Debug/SceneSnapshot.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("折纸的小箱子")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+4f144bef9a53a82ec1d3853545c53fd70357c810")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5cec8711ddabae774b7b55087269b881165af0e7")] [assembly: System.Reflection.AssemblyProductAttribute("SceneSnapshot")] [assembly: System.Reflection.AssemblyTitleAttribute("SceneSnapshot")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0")] diff --git a/SceneSnapshot/obj/Debug/SceneSnapshot.AssemblyInfoInputs.cache b/SceneSnapshot/obj/Debug/SceneSnapshot.AssemblyInfoInputs.cache index 64f77f3..1ce2e88 100644 --- a/SceneSnapshot/obj/Debug/SceneSnapshot.AssemblyInfoInputs.cache +++ b/SceneSnapshot/obj/Debug/SceneSnapshot.AssemblyInfoInputs.cache @@ -1 +1 @@ -98f9f8b340ed0af9da5b4f94f49c93d88f476a71155382c59e1be1615e7d7260 +6d12d4fd5fee7e2efe092fe372fcbb1c60ef5b2f01d26ead67c9644a196af9d9 diff --git a/SceneSnapshot/obj/Release/SceneSnapshot.AssemblyInfo.cs b/SceneSnapshot/obj/Release/SceneSnapshot.AssemblyInfo.cs index 70da2d7..23a8f58 100644 --- a/SceneSnapshot/obj/Release/SceneSnapshot.AssemblyInfo.cs +++ b/SceneSnapshot/obj/Release/SceneSnapshot.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("折纸的小箱子")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+4f144bef9a53a82ec1d3853545c53fd70357c810")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5cec8711ddabae774b7b55087269b881165af0e7")] [assembly: System.Reflection.AssemblyProductAttribute("SceneSnapshot")] [assembly: System.Reflection.AssemblyTitleAttribute("SceneSnapshot")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0")] diff --git a/SceneSnapshot/obj/Release/SceneSnapshot.AssemblyInfoInputs.cache b/SceneSnapshot/obj/Release/SceneSnapshot.AssemblyInfoInputs.cache index b96e039..b7e793a 100644 --- a/SceneSnapshot/obj/Release/SceneSnapshot.AssemblyInfoInputs.cache +++ b/SceneSnapshot/obj/Release/SceneSnapshot.AssemblyInfoInputs.cache @@ -1 +1 @@ -dbfb96cc253ba4264bbcb48c78254549b1e1967f34e2335bb57e0728cfef0e5d +93f0b5a057af3dc21a82cd67b141e8721d34c29387ba1b1257abf8a37633195f