Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(4 edits) (-1)

Outfits

Each opponent can have multiple outfits. Each outfit is contained in a sub-folder within the player folder.  This folder should be all lowercase with no spaces, and will be used as the 'real' internal game name for the outfit.  

Note that the outfits will be ordered alphabetically by this name, so if you have an unlockable bonus outfit, you can put a z at the beginning of the folder name to have it listed last.

Outfit image

The outfit image should be a square image of the player fully dressed. Preferably a 120x120 JPG but larger sizes and pngs will work as well.

Outfit properties file

Similar to the opponents properties file, this file contains setting specific to the outfit. See the next post or detailed specifications

Outfit state folders

These are the  binary name folders representing the possible state of undress of the player. These are the folders the images go into. Each value in the sequence represents the state of that piece of clothing.  1 means the clothing is on, 0 means the clothing is off, - means the clothing is in halfway-off, and X means the clothing may or may not be on.

The game will scan through these folders to determine all the possible undressing orders.

Here are some examples for a player with outfit.1=dress outfit.2=bra and outfit.3=panties defined in their outfit.properties

111 this folder contains the images of the player with all their clothes ON

000 this folder contains the images of the player with all their clothes OFF (yay!)

001 this folder contains the images of the player with only their panties on

010 this folder contains the images of the player with only their bra on (this is how you allow for alternate undressing orders)

01X this folder contains images of the player with dress off, bra on, and panties may or may not be on. (like closeups of their upper body)

0-1 this folder contains images of the player stripping out of their bra, with their panties still on.