Disable - ObjectReference

Revision as of 16:16, 2 December 2015 by imported>Plplecuyer
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: ObjectReference Script

Disables this reference, fading it out of necessary. This function is latent and will wait for the fade out and/or disable to happen.

SyntaxEdit

Function Disable(bool abFadeOut = False) native

ParametersEdit

  • abFadeOut: Whether to fade the item out or not. If this is an enable parent the children will not be faded.
    • Default: False

Return ValueEdit

None.

ExamplesEdit

; Disables the reference, popping it out
TempReference.Disable()


; Disables the reference, fading it out
TempReference.Disable(true)

NotesEdit

  • Small objects will never fade.
  • Children of an enable parent will not fade and will simply pop out of existence when the parent object has finished fading.

See AlsoEdit