[DEV SERVER] Loading description...
Caveats
CK Wiki - Notes
- Aliases and quests will automatically unregister for this event when the quest stops. Active magic effects will automatically unregister when they are removed.
- You should call Form.UnregisterForUpdate() before calling this function a second time or before calling Form.RegisterForSingleUpdate(...), or strange behavior may result. Testing suggests that calling
RegisterForSingleUpdateafterRegisterForUpdatewill replace the periodic update's timer interval with the one provided in the call toRegisterForSingleUpdateand will not start a single-update timer. It also suggests that subsequent calls toRegisterForUpdatewithout an interveningUnregisterForUpdatedo not behave as expected.
Parameters
Examples
; Register to receive update events every 10 real-time seconds
RegisterForUpdate(10.0)Auto-Generated Example
float myFloat__afInterval
myForm__toCallFunctionOn.RegisterForUpdate(myFloat__afInterval)