![]() |
Platformer Pro
2.3.2
A platform game kit for Unity.
|
Condition that is set when the given item is deactivated. More...
Public Member Functions | |
override bool | CheckCondition (Character character, object other) |
Checks the condition. For example a check when entering a trigger. More... | |
override void | Activated (Character character, object other) |
Applies any activation effects. More... | |
![]() | |
virtual bool | CheckInverseCondition (Character character, object other) |
Checks the inverse condition. For example a check when leaving a trigger. More... | |
![]() | |
virtual void | Validate (PlatformerProMonoBehaviour myTarget) |
Override this method if you want to provide custom validation. The actual code should be surrounded by the if UNITY_EDITOR / endif directive. More... | |
Public Attributes | |
ActivationGroup | group |
The group that contains the item. Can be empty in which case character will be searched for an activation group. More... | |
string | itemId |
The item that must be active. More... | |
bool | activateWhenActivated |
The deactivate when activated. More... | |
bool | cacheActivationGroup = true |
If only one character will ever use this, save a reference to the ActivationGroup More... | |
![]() | |
bool | applyOnInverse |
If true condition will be applied on inverse (for example trigger exit as well as enter). More... | |
Additional Inherited Members | |
![]() | |
virtual string | Header [get] |
Gets the header string used to describe the component. More... | |
virtual string | DocLink [get] |
Gets a link to documentation site. More... | |
virtual string | VideoLink [get] |
Gets a link to a youtube video. More... | |
virtual string | Deprecated [get] |
If non-null this component is deprecated. The string shows a message indicating how it should be replaced. More... | |
Condition that is set when the given item is deactivated.
|
virtual |
Applies any activation effects.
character | Character. |
other | Other object supporting the condition. |
Reimplemented from PlatformerPro.AdditionalCondition.
|
virtual |
Checks the condition. For example a check when entering a trigger.
true
, if enter trigger was shoulded, false
otherwise.character | Character. |
other | Other. |
Reimplemented from PlatformerPro.AdditionalCondition.
bool PlatformerPro.DeactivatedCondition.activateWhenActivated |
The deactivate when activated.
bool PlatformerPro.DeactivatedCondition.cacheActivationGroup = true |
If only one character will ever use this, save a reference to the ActivationGroup
ActivationGroup PlatformerPro.DeactivatedCondition.group |
The group that contains the item. Can be empty in which case character will be searched for an activation group.
string PlatformerPro.DeactivatedCondition.itemId |
The item that must be active.