Add StageProgressNextUpdate

This commit is contained in:
lutepickle 2023-05-01 15:11:58 -07:00
parent 82a34f8ea8
commit e43a50522b
1 changed files with 9 additions and 0 deletions

View File

@ -630,6 +630,15 @@ namespace RJW_Menstruation
}
}
public float StageProgessNextUpdate
{
get
{
if (pregnancy != null) return StageProgress;
return Mathf.Clamp01((float)(curStageTicks + TickInterval * Configurations.CycleAcceleration) / currentIntervalTicks);
}
}
public Texture2D GetStageTexture
{
get