Installer Steam
log på
|
sprog
简体中文 (forenklet kinesisk)
繁體中文 (traditionelt kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tjekkisk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spanien)
Español – Latinoamérica (spansk – Latinamerika)
Ελληνικά (græsk)
Français (fransk)
Italiano (italiensk)
Bahasa indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (hollandsk)
Norsk
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasilien)
Română (rumænsk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (Vietnamesisk)
Українська (ukrainsk)
Rapporter et oversættelsesproblem
Verse.AI.Toils_Recipe/<>c__DisplayClass3_0:<FinishRecipeAndStartStoringProduct>b__1 ()
Verse.AI.JobDriver:TryActuallyStartNextToil ()
Verse.AI.JobDriver:ReadyForNextToil ()
Verse.AI.JobDriver:TryActuallyStartNextToil ()
Verse.AI.JobDriver:ReadyForNextToil ()
Verse.AI.Toils_Recipe/<>c__DisplayClass2_0:<DoRecipeWork>b__2 (int)
Verse.AI.JobDriver:DriverTickInterval (int)
Verse.AI.Pawn_JobTracker:JobTrackerTickInterval (int)
Verse.Pawn:TickInterval (int)
Verse.Thing:DoTick ()
Verse.TickList:Tick ()
(wrapper dynamic-method) MonoMod.Utils.DynamicMethodDefinition:Verse.TickManager.DoSingleTick_Patch1 (Verse.TickManager)
Verse.TickManager:TickManagerUpdate ()
Verse.Game:UpdatePlay ()
Verse.Root_Play:Update ()
UnityEngine.StackTraceUtility:ExtractStackTrace ()
(wrapper dynamic-method) MonoMod.Utils.DynamicMethodDefinition:Verse.Log.Error_Patch2 (string)
(wrapper dynamic-method) MonoMod.Utils.DynamicMethodDefinition:Verse.ThingMaker.MakeThing_Patch1 (Verse.ThingDef,Verse.ThingDef)
OberoniaAurea.MakeRecipeProducts_Patch/<Postfix>d__0:MoveNext ()
System.Collections.Generic.List`1<Verse.Thing>:AddEnumerable (System.Collections.Generic.IEnumerable`1<Verse.Thing>)
System.Collections.Generic.List`1<Verse.Thing>:.ctor (System.Collections.Generic.IEnumerable`1<Verse.Thing>)
System.Linq.Enumerable:ToList<Verse.Thing>
3. 检查配方是否指定了材质
在 `RecipeDef` 中,生成该物品的配方也必须正确处理材质。例如:
```xml
<RecipeDef>
<defName>Make_Apparel_Pants</defName>
<products>
<li>
<thingDef>Apparel_Pants</thingDef>
<count>1</count>
</li>
</products>
</RecipeDef>
```
如果没有指定材质来源,系统可能无法自动推断。
这表示游戏尝试生成一个需要材质的物品(如裤子),但没有指定材质(stuff=null),于是 RimWorld 自动分配了一个默认材质。
1. **确认是哪一个 MOD 添加了该 Apparel_Pants**
你可以通过 Dev Mode → 检查物品定义 → 查看 `ThingDef` 的来源 MOD。也可以在 MOD 文件夹中搜索 `Apparel_Pants` 或相关 XML。
2. **检查该物品是否正确设置了材质类别**
在 XML 中,正确的定义应该包含类似:
```xml
<ThingDef ParentName="ApparelBase">
<defName>Apparel_Pants</defName>
<label>pants</label>
<madeFromStuff>true</madeFromStuff>
<stuffCategories>
<li>Fabric</li>
</stuffCategories>
</ThingDef>
```
absFilePath: G:\SteamLibrary\steamapps\workshop\content\294100\3247685844\Textures\dummy.png
Exception loading UnityEngine.Texture2D from file.
absFilePath: G:\SteamLibrary\steamapps\workshop\content\294100\3247685844\Textures\dummy_east.png
Exception loading UnityEngine.Texture2D from file.
absFilePath: G:\SteamLibrary\steamapps\workshop\content\294100\3247685844\Textures\dummy_north.png
Exception loading UnityEngine.Texture2D from file.
absFilePath: G:\SteamLibrary\steamapps\workshop\content\294100\3247685844\Textures\dummy_south.png
My clothes did not disappear after recycling, and the corresponding materials were given, which led to a rapid increase in my wealth.
https://psteamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=2606448745
Is the Multiplayer mod required?
Error in static constructor of Meow.HarmonyInit: System.TypeInitializationException: The type initializer for 'Meow.HarmonyInit' threw an exception. ---> System.TypeLoadException: Could not resolve type with token 010000ea (from typeref, class/assembly Multiplayer.API.MP, 0MultiplayerAPI, Version=0.5.0.0, Culture=neutral, PublicKeyToken=null)
most framework is okay over HAR.. I wonder why. :$