[Condition] isFemale - isMale
Posted: Sun Oct 31, 2021 6:57 pm
Actor.isMale() and Actor.isFemale()
USE:
isMale() = Check if the actor is male.
sFemale() = Check if the actor is female.
TYPE: Condition, Reference
RETURNS: bool
THEME: Gender
COMPARE: isDominantSex, isSameGender, isInterestedIn
EXAMPLE:
Or to check is a female:
OTHER EXAMPLES:
If you do !Player.isMale() = Maybe a female or a trans
If you do !Player.isFemale() = Maybe a male or a trans
If you do Player.isMale() && !Player.isTrans() = you got a male no trans
USE:
isMale() = Check if the actor is male.
sFemale() = Check if the actor is female.
TYPE: Condition, Reference
RETURNS: bool
THEME: Gender
COMPARE: isDominantSex, isSameGender, isInterestedIn
EXAMPLE:
Code: Select all
If John.isMale()
"<John.name> is a dude!"
Endif
Code: Select all
If Sally.isFemale()
"<Sally.name> is a girl!"
Endif
If you do !Player.isMale() = Maybe a female or a trans
If you do !Player.isFemale() = Maybe a male or a trans
If you do Player.isMale() && !Player.isTrans() = you got a male no trans