cellActivated⚓︎
This event is triggered when a cell is activated.
--- @param e cellActivatedEventData
local function cellActivatedCallback(e)
end
event.register(tes3.event.cellActivated, cellActivatedCallback)
Tip
This event can be filtered based on the cell
event data.
Tip
An event can be claimed by setting e.claim
to true
, or by returning false
from the callback. Claiming the event prevents any lower priority callbacks from being called.
Event Data⚓︎
cell
(tes3cell): Read-only. The cell which was activated.