correct misspells

This commit is contained in:
moreoreganostodump 2021-02-05 16:26:53 +09:00
parent 69c6aeebc1
commit 0a5c7105a1
6 changed files with 5 additions and 4 deletions

Binary file not shown.

View File

@ -5,7 +5,7 @@
<label>human fetus</label> <label>human fetus</label>
<fetusTexPath>Fetus/Fetus_Default</fetusTexPath> <fetusTexPath>Fetus/Fetus_Default</fetusTexPath>
<cumColor>(255,255,255,255)</cumColor> <!-- RGBA --> <cumColor>(255,255,255,255)</cumColor> <!-- RGBA -->
<cumTickness>0.2</cumTickness> <!-- 1.0 = never natural flow out. if this value get over 1.0, cum will propagation self in womb --> <cumThickness>0.2</cumThickness> <!-- 1.0 = never natural flow out. if this value get over 1.0, cum will propagation self in womb -->
</RJW_Menstruation.DNADef> </RJW_Menstruation.DNADef>

View File

@ -2,6 +2,7 @@ Version 1.0.0.6
- if pawn is fertility stat is 0, stage is fixed at none. - if pawn is fertility stat is 0, stage is fixed at none.
- added option for fetus information level. - added option for fetus information level.
- depend on information level, pregnant stage display as luteal stage - depend on information level, pregnant stage display as luteal stage
- rewrote misspelled DNADef attribute
Version 1.0.0.5 Version 1.0.0.5
- womb cum capacity is affected by pawn's bodysize - womb cum capacity is affected by pawn's bodysize
- changed cum volume calculate method. - changed cum volume calculate method.

View File

@ -27,7 +27,7 @@ namespace RJW_Menstruation
{ {
get get
{ {
if (!notcum) return DNA.cumTickness; if (!notcum) return DNA.cumThickness;
else return notcumthickness; else return notcumthickness;
} }
set set

View File

@ -18,7 +18,7 @@ namespace RJW_Menstruation
public string fetusTexPath; public string fetusTexPath;
public ColorInt cumColor; public ColorInt cumColor;
public Color CumColor => cumColor.ToColor; public Color CumColor => cumColor.ToColor;
public float cumTickness = 0f; public float cumThickness = 0f;
} }

View File

@ -15,7 +15,7 @@ namespace RJW_Menstruation
{ {
fetusTexPath = "Fetus/Fetus_Default", fetusTexPath = "Fetus/Fetus_Default",
cumColor = new ColorInt(255, 255, 255, 255), cumColor = new ColorInt(255, 255, 255, 255),
cumTickness = 0 cumThickness = 0
}; };
public static readonly ThingDef CumFilth = DefDatabase<ThingDef>.GetNamed("FilthCum"); public static readonly ThingDef CumFilth = DefDatabase<ThingDef>.GetNamed("FilthCum");