OnResourceLoadStateChange: Difference between revisions
Jump to navigation
Jump to search
(Add onResourceLoadStateChange event by TeteX1.) |
mNo edit summary |
||
Line 1: | Line 1: | ||
{{Server event}} | {{Server event}} | ||
{{New feature/item|3. | {{New feature/item|3.0159|1.5.8|20809|This event is triggered when a [[resource]] load state is changed.}} | ||
__NOTOC__ | __NOTOC__ | ||
==Parameters== | ==Parameters== |
Revision as of 11:24, 11 April 2021
This event is triggered when a resource load state is changed.
Parameters
resource changedResource, string oldState, string newState
- changedResource: the resource that was either loaded, reloaded or is unloading.
- oldState: the state the resource was in before it changed.
- newState: the state the resource has changed to.
Source
The source of this event is the root element.
Example
Click to collapse [-]
Example 1This code will output the state of resource when it's state will be changed.
function onResourceLoadStateChange(resource, oldState, newState) print("Resource "..getResourceName(resource).." has changed it's state from "..tostring(oldState).." to "..tostring(newState)) end addEventHandler("onResourceLoadStateChange", root, onResourceLoadStateChange)
See Also
Resource events
Event functions
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled