74 lines
1.7 KiB
Plaintext
74 lines
1.7 KiB
Plaintext
根据向量相似度分析,与 'BiosculpterPod' 最相关的代码定义如下:
|
|
|
|
---
|
|
**文件路径:** `C:\Steam\steamapps\common\RimWorld\Data\dll1.6\RimWorld\CompProperties_BiosculpterPod_BaseCycle.txt`
|
|
**相似度:** 0.6754
|
|
|
|
```csharp
|
|
public abstract class CompProperties_BiosculpterPod_BaseCycle : CompProperties
|
|
{
|
|
[NoTranslate]
|
|
public string key;
|
|
|
|
[MustTranslate]
|
|
public string label;
|
|
|
|
[MustTranslate]
|
|
public string description;
|
|
|
|
[NoTranslate]
|
|
public string iconPath;
|
|
|
|
public float durationDays;
|
|
|
|
public Color operatingColor = new Color(0.5f, 0.7f, 0.5f);
|
|
|
|
public ThoughtDef gainThoughtOnCompletion;
|
|
|
|
public List<ResearchProjectDef> requiredResearch;
|
|
|
|
public List<ThingDefCountClass> extraRequiredIngredients;
|
|
|
|
private Texture2D icon;
|
|
|
|
public Texture2D Icon
|
|
{
|
|
get
|
|
{
|
|
if (icon == null)
|
|
{
|
|
icon = ContentFinder<Texture2D>.Get(iconPath);
|
|
}
|
|
return icon;
|
|
}
|
|
}
|
|
|
|
public string LabelCap => label.CapitalizeFirst();
|
|
}
|
|
```
|
|
---
|
|
**文件路径:** `C:\Steam\steamapps\common\RimWorld\Data\dll1.6\RimWorld\CompProperties_BiosculpterPod_PleasureCycle.txt`
|
|
**相似度:** 0.6624
|
|
|
|
```csharp
|
|
public class CompProperties_BiosculpterPod_PleasureCycle : CompProperties_BiosculpterPod_BaseCycle
|
|
{
|
|
public CompProperties_BiosculpterPod_PleasureCycle()
|
|
{
|
|
compClass = typeof(CompBiosculpterPod_PleasureCycle);
|
|
}
|
|
}
|
|
```
|
|
---
|
|
**文件路径:** `C:\Steam\steamapps\common\RimWorld\Data\dll1.6\RimWorld\CompProperties_BiosculpterPod_AgeReversalCycle.txt`
|
|
**相似度:** 0.6461
|
|
|
|
```csharp
|
|
public class CompProperties_BiosculpterPod_AgeReversalCycle : CompProperties_BiosculpterPod_BaseCycle
|
|
{
|
|
public CompProperties_BiosculpterPod_AgeReversalCycle()
|
|
{
|
|
compClass = typeof(CompBiosculpterPod_AgeReversalCycle);
|
|
}
|
|
}
|
|
``` |