Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(10 edits)

When Lona wearing Normal Mid, and SexyBot, she isn't nude.

Because SexyBot covers "Groin" in json.

Of course. it's covers Groin. But only phisically. Everyone can see through it.

IMHO:

  • We need to make Partial Covers. To separate physical coverage from visual coverage.
  • Or simply delete ["Groin"] from "equip_part_covered" in SexyBot json.
  • Or do something like this (not exactly this):
def player_nude?
    chest_present = actor.equip_part_covered.include?("Chest")
    anal_present = actor.equip_part_covered.include?("Anal")
    vag_present = actor.equip_part_covered.include?("Vag")
    return !(chest_present && vag_present && anal_present)
end
#Probably, it will be good idea to create "Breasts". And use it with "Chest" as "Groin"/"Vag" or "Butt"/"Anal". When it together it cover physically and visual, when only Groin/Butt/Chest/, without Vag/Anal/Breasts, then only physically.