mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
correct misspells
This commit is contained in:
parent
69c6aeebc1
commit
0a5c7105a1
6 changed files with 5 additions and 4 deletions
Binary file not shown.
|
@ -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>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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.
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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");
|
||||||
|
|
Loading…
Reference in a new issue