mirror of
https://github.com/amevarashi/RJW-Sexperience.git
synced 2024-08-14 23:54:08 +00:00
Started reusing objects in SexStatusViewModel
This commit is contained in:
parent
4e44d42c4f
commit
5138e11cb2
5 changed files with 128 additions and 109 deletions
|
@ -240,7 +240,7 @@ namespace RJWSexperience.SexHistory.UI
|
|||
|
||||
if (preferedRaceCard.barInfo != null)
|
||||
{
|
||||
UIUtility.FillableBarLabeled(infoRect3, (BarInfo)preferedRaceCard.barInfo);
|
||||
UIUtility.FillableBarLabeled(infoRect3, preferedRaceCard.barInfo);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -304,7 +304,7 @@ namespace RJWSexperience.SexHistory.UI
|
|||
listmain.FillableBarLabeled(_context.BestSextype);
|
||||
listmain.FillableBarLabeled(_context.RecentSextype);
|
||||
|
||||
if (_context.Incest.fillPercent < _context.Necro.fillPercent)
|
||||
if (_context.Incest.FillPercent < _context.Necro.FillPercent)
|
||||
{
|
||||
listmain.FillableBarLabeled(_context.Necro);
|
||||
}
|
||||
|
@ -315,16 +315,16 @@ namespace RJWSexperience.SexHistory.UI
|
|||
|
||||
listmain.FillableBarLabeled(_context.ConsumedCum);
|
||||
|
||||
if (_context.CumHediff != null)
|
||||
if (_context.CumHediff.Label != "")
|
||||
{
|
||||
listmain.FillableBarLabeled((BarInfo)_context.CumHediff);
|
||||
listmain.FillableBarLabeled(_context.CumHediff);
|
||||
}
|
||||
else
|
||||
{
|
||||
listmain.Gap(FONTHEIGHT + 1f);
|
||||
}
|
||||
|
||||
if (_context.Raped.fillPercent < _context.BeenRaped.fillPercent)
|
||||
if (_context.Raped.FillPercent < _context.BeenRaped.FillPercent)
|
||||
{
|
||||
listmain.FillableBarLabeled(_context.BeenRaped);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue