Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

There is a strange thing in game settings

A topic by AleDerXan created 29 days ago Views: 313 Replies: 1
Viewing posts 1 to 2
(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. 

eccma has put it on his todo list in the discord.