Difference between revisions of "Disable"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
imported>Haama
(→‎Notes: Added parent ref note)
imported>Speedo
(Problems disabling objects with active spells)
Line 5: Line 5:


==Notes==
==Notes==
* Disable does '''not''' remove objects from the game, just stops them from rendering. Do not rely on Disable to save on performance by removing objects.
* Disable does '''not''' remove objects from the game, just stops them from rendering. Do not rely on Disable to prevent savegame bloat by removing objects.
* Disabled actors cannot be forced to activate objects via a scripted [[Activate]] function.
* Disabled actors cannot be forced to activate objects via a scripted [[Activate]] function.
*Disabling the object on which a spell is active during the [[ScriptEffectStart]] block causes unpredictable behavior in the later spell blocks.
**[[ScriptEffectUpdate]] blocks will execute several times, but not for the full duration of the spell.
**The [[ScriptEffectFinish]] block will sometimes fail to execute.
* {{Disable State and Parent Ref}}
* {{Disable State and Parent Ref}}



Revision as of 18:03, 28 July 2008

Syntax:

Disable

Disables the calling object. Disabled objects are not loaded in the world, disabled actors do not process their AI, but scripts do run on disabled objects.

Notes

  • Disable does not remove objects from the game, just stops them from rendering. Do not rely on Disable to prevent savegame bloat by removing objects.
  • Disabled actors cannot be forced to activate objects via a scripted Activate function.
  • Disabling the object on which a spell is active during the ScriptEffectStart block causes unpredictable behavior in the later spell blocks.
  • Does not work on objects with a parent ref. You will have to use the function on the parent ref instead. Use GetParentRef to find the parent ref. There is currently no function to determine the "Enable State to Opposite of Parent" flag.


See Also

Enable

GetDisabled