Interface INamePlateGui
Class used to modify the data used when rendering nameplates.
Assembly: Dalamud.dll
View Source
public interface INamePlateGui
Methods
RequestRedraw()
Requests that all nameplates should be redrawn on the following frame.
View Source
void RequestRedraw()
Events
OnNamePlateUpdate
An event which fires when nameplate data is updated and at least one nameplate has important updates. The subscriber is provided with a list of handlers for nameplates with important updates.
View Source
event INamePlateGui.OnPlateUpdateDelegate? OnNamePlateUpdate
Event Type
Dalamud.Plugin.Services.INamePlateGui.OnPlateUpdateDelegate
OnPostNamePlateUpdate
An event which fires after nameplate data is updated and at least one nameplate had important updates. The subscriber is provided with a list of handlers for nameplates with important updates.
View Source
event INamePlateGui.OnPlateUpdateDelegate? OnPostNamePlateUpdate
Event Type
Dalamud.Plugin.Services.INamePlateGui.OnPlateUpdateDelegate
OnDataUpdate
An event which fires when nameplate data is updated. The subscriber is provided with a list of handlers for all nameplates.
View Source
event INamePlateGui.OnPlateUpdateDelegate? OnDataUpdate
Event Type
Dalamud.Plugin.Services.INamePlateGui.OnPlateUpdateDelegate
OnPostDataUpdate
An event which fires after nameplate data is updated. The subscriber is provided with a list of handlers for all nameplates.
View Source
event INamePlateGui.OnPlateUpdateDelegate? OnPostDataUpdate