diff --git a/docs/README.html b/docs/README.html index fc94b7a45..4a573a0ba 100644 --- a/docs/README.html +++ b/docs/README.html @@ -60,7 +60,7 @@
diff --git a/docs/api/Dalamud.Configuration.IPluginConfiguration.html b/docs/api/Dalamud.Configuration.IPluginConfiguration.html index 99bb8a326..eb59bd208 100644 --- a/docs/api/Dalamud.Configuration.IPluginConfiguration.html +++ b/docs/api/Dalamud.Configuration.IPluginConfiguration.html @@ -73,7 +73,8 @@

Interface IPluginConfiguration

-
+

Configuration to store settings for a dalamud plugin.

+
Namespace: Dalamud.Configuration
Assembly: Dalamud.dll
@@ -92,7 +93,8 @@

Version

-
+

Gets or sets configuration version.

+
Declaration
@@ -124,7 +126,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Configuration.PluginConfigurations.html b/docs/api/Dalamud.Configuration.PluginConfigurations.html index f431a5fbc..ba397a871 100644 --- a/docs/api/Dalamud.Configuration.PluginConfigurations.html +++ b/docs/api/Dalamud.Configuration.PluginConfigurations.html @@ -73,7 +73,8 @@

    Class PluginConfigurations

    -
    +

    Configuration to store settings for a dalamud plugin.

    +
    Inheritance
    @@ -117,11 +118,12 @@ Improve this Doc - View Source + View Source

    PluginConfigurations(String)

    -
    +

    Initializes a new instance of the PluginConfigurations class.

    +
    Declaration
    @@ -140,7 +142,8 @@ System.String storageFolder - +

    Directory for storage of plugin configuration files.

    + @@ -151,7 +154,7 @@ Improve this Doc - View Source + View Source

    GetConfigFile(String)

    @@ -191,7 +194,7 @@ System.IO.FileInfo -

    FileInfo of the config file

    +

    FileInfo of the config file.

    @@ -201,11 +204,12 @@ Improve this Doc - View Source + View Source

    GetDirectory(String)

    -
    +

    Get plugin directory.

    +
    Declaration
    @@ -224,7 +228,8 @@ System.String pluginName - +

    Plugin name.

    + @@ -239,7 +244,8 @@ System.String - +

    Plugin directory path.

    + @@ -248,11 +254,12 @@ Improve this Doc - View Source + View Source

    Load(String)

    -
    +

    Load plugin configuration.

    +
    Declaration
    @@ -271,7 +278,8 @@ System.String pluginName - +

    Plugin name.

    + @@ -286,7 +294,8 @@ IPluginConfiguration - +

    Plugin configuration.

    + @@ -295,11 +304,15 @@ Improve this Doc - View Source + View Source

    LoadForType<T>(String)

    -
    +

    Load Plugin configuration. Parameterized deserialization. +Currently this is called via reflection from DalamudPluginInterface.GetPluginConfig(). +Eventually there may be an additional pluginInterface method that can call this directly +without reflection - for now this is in support of the existing plugin api.

    +
    Declaration
    @@ -319,7 +332,8 @@ System.String pluginName - +

    Plugin Name.

    + @@ -334,7 +348,8 @@ T - +

    Plugin Configuration.

    + @@ -349,7 +364,8 @@ T - +

    Configuration Type.

    + @@ -358,11 +374,16 @@ Improve this Doc - View Source + View Source

    Save(IPluginConfiguration, String)

    -
    +

    Save/Load plugin configuration. +NOTE: Save/Load are still using Type information for now, +despite LoadForType superseding Load and not requiring or using it. +It might be worth removing the Type info from Save, to strip it from all future saved configs, +and then Load() can probably be removed entirely.

    +
    Declaration
    @@ -381,12 +402,14 @@ IPluginConfiguration config - +

    Plugin configuration.

    + System.String pluginName - +

    Plugin name.

    + @@ -401,7 +424,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Configuration.html b/docs/api/Dalamud.Configuration.html index df54c216b..e691236db 100644 --- a/docs/api/Dalamud.Configuration.html +++ b/docs/api/Dalamud.Configuration.html @@ -78,11 +78,13 @@

    Classes

    PluginConfigurations

    -
    +

    Configuration to store settings for a dalamud plugin.

    +

    Interfaces

    IPluginConfiguration

    -
    +

    Configuration to store settings for a dalamud plugin.

    +
    diff --git a/docs/api/Dalamud.Dalamud.html b/docs/api/Dalamud.Dalamud.html index 9a72b8442..fe8bdaf84 100644 --- a/docs/api/Dalamud.Dalamud.html +++ b/docs/api/Dalamud.Dalamud.html @@ -119,13 +119,13 @@ | - Improve this Doc + Improve this Doc View Source -

    Dalamud(DalamudStartInfo, LoggingLevelSwitch, ManualResetEvent)

    +

    Dalamud(DalamudStartInfo, LoggingLevelSwitch, ManualResetEvent)

    Initializes a new instance of the Dalamud class.

    @@ -150,7 +150,7 @@ - LoggingLevelSwitch + Serilog.Core.LoggingLevelSwitch loggingLevelSwitch

    LoggingLevelSwitch to control Serilog level.

    diff --git a/docs/api/Dalamud.Data.DataManager.html b/docs/api/Dalamud.Data.DataManager.html index ec38086fa..efc202a44 100644 --- a/docs/api/Dalamud.Data.DataManager.html +++ b/docs/api/Dalamud.Data.DataManager.html @@ -115,42 +115,6 @@
    public class DataManager : IDisposable
    -

    Constructors -

    - - | - Improve this Doc - - - View Source - - -

    DataManager(ClientLanguage)

    -

    Initializes a new instance of the DataManager class.

    -
    -
    -
    Declaration
    -
    -
    public DataManager(ClientLanguage language)
    -
    -
    Parameters
    - - - - - - - - - - - - - - - -
    TypeNameDescription
    ClientLanguagelanguage

    The language to load data with by default.

    -

    Properties

    @@ -158,7 +122,7 @@ Improve this Doc - View Source + View Source

    ClientOpCodes

    @@ -167,7 +131,8 @@
    Declaration
    -
    public ReadOnlyDictionary<string, ushort> ClientOpCodes { get; }
    +
    [UsedImplicitly]
    +public ReadOnlyDictionary<string, ushort> ClientOpCodes { get; }
    Property Value
    @@ -189,11 +154,11 @@ Improve this Doc - View Source + View Source

    Excel

    -

    Gets an object which gives access to any of the game's sheet data.

    +

    Gets an Lumina.Excel.ExcelModule object which gives access to any of the game's sheet data.

    Declaration
    @@ -210,7 +175,7 @@
    - + @@ -220,7 +185,7 @@ Improve this Doc - View Source + View Source

    IsDataReady

    @@ -248,11 +213,42 @@
    ExcelModuleLumina.Excel.ExcelModule
    | - Improve this Doc + Improve this Doc View Source + +

    Language

    +

    Gets the current game client language.

    +
    +
    +
    Declaration
    +
    +
    public ClientLanguage Language { get; }
    +
    +
    Property Value
    + + + + + + + + + + + + + +
    TypeDescription
    ClientLanguage
    + + | + Improve this Doc + + + View Source +

    ServerOpCodes

    Gets the OpCodes sent by the server to the client.

    @@ -284,7 +280,7 @@ Improve this Doc - View Source + View Source

    Dispose()

    @@ -300,7 +296,7 @@ Improve this Doc - View Source + View Source

    FileExists(String)

    @@ -350,11 +346,11 @@ Improve this Doc - View Source + View Source

    GetExcelSheet<T>()

    -

    Get an with the given Excel sheet row type.

    +

    Get an Lumina.Excel.ExcelSheet<T> with the given Excel sheet row type.

    Declaration
    @@ -372,8 +368,8 @@ - ExcelSheet<T> -

    The , giving access to game rows.

    + Lumina.Excel.ExcelSheet<T> +

    The Lumina.Excel.ExcelSheet<T>, giving access to game rows.

    @@ -399,11 +395,11 @@ Improve this Doc - View Source + View Source

    GetExcelSheet<T>(ClientLanguage)

    -

    Get an with the given Excel sheet row type with a specified language.

    +

    Get an Lumina.Excel.ExcelSheet<T> with the given Excel sheet row type with a specified language.

    Declaration
    @@ -439,8 +435,8 @@ - ExcelSheet<T> -

    The , giving access to game rows.

    + Lumina.Excel.ExcelSheet<T> +

    The Lumina.Excel.ExcelSheet<T>, giving access to game rows.

    @@ -466,11 +462,11 @@ Improve this Doc - View Source + View Source

    GetFile(String)

    -

    Get a with the given path.

    +

    Get a Lumina.Data.FileResource with the given path.

    Declaration
    @@ -505,8 +501,8 @@ - FileResource -

    The of the file.

    + Lumina.Data.FileResource +

    The Lumina.Data.FileResource of the file.

    @@ -516,11 +512,11 @@ Improve this Doc - View Source + View Source

    GetFile<T>(String)

    -

    Get a with the given path, of the given type.

    +

    Get a Lumina.Data.FileResource with the given path, of the given type.

    Declaration
    @@ -557,7 +553,7 @@ T -

    The of the file.

    +

    The Lumina.Data.FileResource of the file.

    @@ -583,11 +579,11 @@ Improve this Doc - View Source + View Source

    GetIcon(ClientLanguage, Int32)

    -

    Get a containing the icon with the given ID, of the given language.

    +

    Get a Lumina.Data.Files.TexFile containing the icon with the given ID, of the given language.

    Declaration
    @@ -628,8 +624,8 @@ - TexFile -

    The containing the icon.

    + Lumina.Data.Files.TexFile +

    The Lumina.Data.Files.TexFile containing the icon.

    @@ -639,11 +635,11 @@ Improve this Doc - View Source + View Source

    GetIcon(Int32)

    -

    Get a containing the icon with the given ID.

    +

    Get a Lumina.Data.Files.TexFile containing the icon with the given ID.

    Declaration
    @@ -678,8 +674,8 @@ - TexFile -

    The containing the icon.

    + Lumina.Data.Files.TexFile +

    The Lumina.Data.Files.TexFile containing the icon.

    @@ -689,11 +685,11 @@ Improve this Doc - View Source + View Source

    GetIcon(String, Int32)

    -

    Get a containing the icon with the given ID, of the given type.

    +

    Get a Lumina.Data.Files.TexFile containing the icon with the given ID, of the given type.

    Declaration
    @@ -734,27 +730,77 @@ - TexFile -

    The containing the icon.

    + Lumina.Data.Files.TexFile +

    The Lumina.Data.Files.TexFile containing the icon.

    | - Improve this Doc + Improve this Doc - View Source + View Source - -

    Initialize(String)

    -

    Initialize this data manager.

    + +

    GetImGuiTexture(TexFile)

    +

    Get the passed Lumina.Data.Files.TexFile as a drawable ImGui TextureWrap.

    Declaration
    -
    public void Initialize(string baseDir)
    +
    public TextureWrap GetImGuiTexture(TexFile tex)
    +
    +
    Parameters
    + + + + + + + + + + + + + + + +
    TypeNameDescription
    Lumina.Data.Files.TexFiletex

    The Lumina Lumina.Data.Files.TexFile.

    +
    +
    Returns
    + + + + + + + + + + + + + +
    TypeDescription
    TextureWrap

    A TextureWrap that can be used to draw the texture.

    +
    + + | + Improve this Doc + + + View Source + + +

    GetImGuiTexture(String)

    +

    Get the passed texture path as a drawable ImGui TextureWrap.

    +
    +
    +
    Declaration
    +
    +
    public TextureWrap GetImGuiTexture(string path)
    Parameters
    @@ -768,8 +814,136 @@ - - + + + +
    System.StringbaseDir

    The directory to load data from.

    +
    path

    The internal path to the texture.

    +
    +
    Returns
    + + + + + + + + + + + + + +
    TypeDescription
    TextureWrap

    A TextureWrap that can be used to draw the texture.

    +
    + + | + Improve this Doc + + + View Source + + +

    GetImGuiTextureIcon(ClientLanguage, Int32)

    +

    Get a TextureWrap containing the icon with the given ID, of the given language.

    +
    +
    +
    Declaration
    +
    +
    public TextureWrap GetImGuiTextureIcon(ClientLanguage iconLanguage, int iconId)
    +
    +
    Parameters
    + + + + + + + + + + + + + + + + + + + + +
    TypeNameDescription
    ClientLanguageiconLanguage

    The requested language.

    +
    System.Int32iconId

    The icon ID.

    +
    +
    Returns
    + + + + + + + + + + + + + +
    TypeDescription
    TextureWrap

    The TextureWrap containing the icon.

    +
    + + | + Improve this Doc + + + View Source + + +

    GetImGuiTextureIcon(String, Int32)

    +

    Get a TextureWrap containing the icon with the given ID, of the given type.

    +
    +
    +
    Declaration
    +
    +
    public TextureWrap GetImGuiTextureIcon(string type, int iconId)
    +
    +
    Parameters
    + + + + + + + + + + + + + + + + + + + + +
    TypeNameDescription
    System.Stringtype

    The type of the icon (e.g. 'hq' to get the HQ variant of an item icon).

    +
    System.Int32iconId

    The icon ID.

    +
    +
    Returns
    + + + + + + + + + + + @@ -789,7 +963,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Data.LuminaExtensions.TexFileExtensions.html b/docs/api/Dalamud.Data.LuminaExtensions.TexFileExtensions.html index 964b3ddb5..14c005a8b 100644 --- a/docs/api/Dalamud.Data.LuminaExtensions.TexFileExtensions.html +++ b/docs/api/Dalamud.Data.LuminaExtensions.TexFileExtensions.html @@ -73,7 +73,7 @@

    Class TexFileExtensions

    -

    Extensions to .

    +

    Extensions to Lumina.Data.Files.TexFile.

    @@ -115,13 +115,13 @@ | - Improve this Doc + Improve this Doc View Source -

    GetRgbaImageData(TexFile)

    +

    GetRgbaImageData(TexFile)

    Returns the image data formatted for LoadImageRaw(Byte[], Int32, Int32, Int32).

    @@ -140,7 +140,7 @@
    - + diff --git a/docs/api/Dalamud.Data.LuminaExtensions.html b/docs/api/Dalamud.Data.LuminaExtensions.html index 28f219499..0de13f39a 100644 --- a/docs/api/Dalamud.Data.LuminaExtensions.html +++ b/docs/api/Dalamud.Data.LuminaExtensions.html @@ -78,7 +78,7 @@

    Classes

    TexFileExtensions

    -

    Extensions to .

    +

    Extensions to Lumina.Data.Files.TexFile.

    diff --git a/docs/api/Dalamud.EntryPoint.html b/docs/api/Dalamud.EntryPoint.html index be5134820..fa0179a71 100644 --- a/docs/api/Dalamud.EntryPoint.html +++ b/docs/api/Dalamud.EntryPoint.html @@ -81,6 +81,34 @@
    System.Object
    EntryPoint
    +
    +
    Implements
    +
    EasyHook.IEntryPoint
    +
    +
    +
    Inherited Members
    +
    + System.Object.ToString() +
    +
    + System.Object.Equals(System.Object) +
    +
    + System.Object.Equals(System.Object, System.Object) +
    +
    + System.Object.ReferenceEquals(System.Object, System.Object) +
    +
    + System.Object.GetHashCode() +
    +
    + System.Object.GetType() +
    +
    + System.Object.MemberwiseClone() +
    +
    Namespace: Dalamud
    Assembly: Dalamud.dll
    Syntax
    @@ -91,13 +119,13 @@ | - Improve this Doc + Improve this Doc View Source -

    EntryPoint(RemoteHooking.IContext, DalamudStartInfo)

    +

    EntryPoint(RemoteHooking.IContext, DalamudStartInfo)

    Initializes a new instance of the EntryPoint class.

    @@ -116,9 +144,9 @@
    - + - @@ -133,13 +161,13 @@ | - Improve this Doc + Improve this Doc View Source -

    Run(RemoteHooking.IContext, DalamudStartInfo)

    +

    Run(RemoteHooking.IContext, DalamudStartInfo)

    Initialize all Dalamud subsystems and start running on the main thread.

    @@ -158,9 +186,9 @@ - + - @@ -171,6 +199,10 @@
    TypeDescription
    TextureWrap

    The TextureWrap containing the icon.

    TexFileLumina.Data.Files.TexFile texFile

    The TexFile to format.

    RemoteHooking.IContextEasyHook.RemoteHooking.IContext ctx

    The used to load the DLL.

    +

    The EasyHook.RemoteHooking.IContext used to load the DLL.

    RemoteHooking.IContextEasyHook.RemoteHooking.IContext ctx

    The used to load the DLL.

    +

    The EasyHook.RemoteHooking.IContext used to load the DLL.

    +

    Implements

    +
    + EasyHook.IEntryPoint +
    diff --git a/docs/api/Dalamud.Game.ClientState.Actors.ActorTable.html b/docs/api/Dalamud.Game.ClientState.Actors.ActorTable.html index 97ac7e425..27ce30131 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.ActorTable.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.ActorTable.html @@ -176,7 +176,8 @@
    Declaration
    -
    public Actor this[int index] { get; }
    +
    [CanBeNull]
    +public Actor this[int index] { get; }
    Parameters
    diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Position3.html b/docs/api/Dalamud.Game.ClientState.Actors.Position3.html index 09c92e4d6..50be8c479 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Position3.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Position3.html @@ -201,13 +201,13 @@ View Source -

    Implicit(Position3 to SharpDX.Vector3)

    +

    Implicit(Position3 to Vector3)

    Convert this Position3 to a SharpDX.Vector3

    Declaration
    -
    public static implicit operator SharpDX.Vector3(Position3 pos)
    +
    public static implicit operator Vector3(Position3 pos)
    Parameters
    diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.html b/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.html index c280a8890..8ae98de7d 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.html @@ -204,7 +204,7 @@
    Declaration
    -
    public Lumina.Excel.GeneratedSheets.ClassJob GameData { get; }
    +
    public ClassJob GameData { get; }
    Property Value
    diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.World.html b/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.World.html index 24c763d0e..3c581a9f1 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.World.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Resolvers.World.html @@ -204,7 +204,7 @@
    Declaration
    -
    public Lumina.Excel.GeneratedSheets.World GameData { get; }
    +
    public World GameData { get; }
    Property Value
    diff --git a/docs/api/Dalamud.Game.ClientState.Actors.TargetOffsets.html b/docs/api/Dalamud.Game.ClientState.Actors.TargetOffsets.html index b67ea68fa..559dfd5b8 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.TargetOffsets.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.TargetOffsets.html @@ -228,6 +228,35 @@
    + + | + Improve this Doc + + + View Source + +

    SoftTarget

    +
    +
    +
    Declaration
    +
    +
    public const int SoftTarget = 136
    +
    +
    Field Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.Int32
    diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Targets.html b/docs/api/Dalamud.Game.ClientState.Actors.Targets.html index ff0f4cfdd..78260ff94 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Targets.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Targets.html @@ -117,7 +117,7 @@ Improve this Doc - View Source + View Source

    CurrentTarget

    @@ -147,7 +147,7 @@ Improve this Doc - View Source + View Source

    FocusTarget

    @@ -177,7 +177,7 @@ Improve this Doc - View Source + View Source

    MouseOverTarget

    @@ -207,7 +207,7 @@ Improve this Doc - View Source + View Source

    PreviousTarget

    @@ -232,6 +232,36 @@ + + | + Improve this Doc + + + View Source + + +

    SoftTarget

    +
    +
    +
    Declaration
    +
    +
    public Actor SoftTarget { get; }
    +
    +
    Property Value
    + + + + + + + + + + + + + +
    TypeDescription
    Actor

    Methods

    @@ -239,7 +269,7 @@ Improve this Doc - View Source + View Source

    ClearCurrentTarget()

    @@ -254,7 +284,7 @@ Improve this Doc - View Source + View Source

    ClearFocusTarget()

    @@ -269,7 +299,7 @@ Improve this Doc - View Source + View Source

    SetCurrentTarget(Actor)

    @@ -301,7 +331,7 @@ Improve this Doc - View Source + View Source

    SetCurrentTarget(IntPtr)

    @@ -333,7 +363,7 @@ Improve this Doc - View Source + View Source

    SetFocusTarget(Actor)

    @@ -365,7 +395,7 @@ Improve this Doc - View Source + View Source

    SetFocusTarget(IntPtr)

    @@ -403,7 +433,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.Actor.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.Actor.html index 4fc524b3e..6c995d5f7 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.Actor.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.Actor.html @@ -124,11 +124,12 @@ Improve this Doc - View Source + View Source

    Actor(IntPtr, Actor, Dalamud)

    -

    Initialize a representation of a basic FFXIV actor.

    +

    Initializes a new instance of the Actor class. +This represents a basic FFXIV actor.

    Declaration
    @@ -167,45 +168,15 @@

    Fields

    - - | - Improve this Doc - - - View Source - -

    actorStruct

    -

    The memory representation of the base actor.

    -
    -
    -
    Declaration
    -
    -
    protected Actor actorStruct
    -
    -
    Field Value
    - - - - - - - - - - - - - -
    TypeDescription
    Actor
    | Improve this Doc - View Source + View Source

    Address

    -

    The address of this actor in memory.

    +

    Gets the address of this actor in memory.

    Declaration
    @@ -227,35 +198,6 @@ - - | - Improve this Doc - - - View Source - -

    dalamud

    -
    -
    -
    Declaration
    -
    -
    protected Dalamud dalamud
    -
    -
    Field Value
    - - - - - - - - - - - - - -
    TypeDescription
    Dalamud

    Properties

    @@ -263,11 +205,11 @@ Improve this Doc - View Source + View Source

    ActorId

    -

    Actor ID of this Actor.

    +

    Gets the actor ID of this Actor.

    Declaration
    @@ -289,16 +231,78 @@ + + | + Improve this Doc + + + View Source + + +

    Dalamud

    +

    Gets the Dalamud backing instance.

    +
    +
    +
    Declaration
    +
    +
    protected Dalamud Dalamud { get; }
    +
    +
    Property Value
    + + + + + + + + + + + + + +
    TypeDescription
    Dalamud
    + + | + Improve this Doc + + + View Source + + +

    HitboxRadius

    +

    Gets the hitbox radius of this Actor.

    +
    +
    +
    Declaration
    +
    +
    public float HitboxRadius { get; }
    +
    +
    Property Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.Single
    | Improve this Doc - View Source + View Source

    Name

    -

    Displayname of this Actor.

    +

    Gets the displayname of this Actor.

    Declaration
    @@ -325,12 +329,12 @@ Improve this Doc - View Source + View Source

    ObjectKind

    -

    Entity kind of this Actor. See ObjectKind for -possible values.

    +

    Gets the entity kind of this Actor. +See ObjectKind for possible values.

    Declaration
    @@ -357,11 +361,11 @@ possible values.

    Improve this Doc - View Source + View Source

    Position

    -

    Position of this Actor.

    +

    Gets the position of this Actor.

    Declaration
    @@ -388,11 +392,11 @@ possible values.

    Improve this Doc - View Source + View Source

    Rotation

    -

    Rotation of this Actor.
    +

    Gets the rotation of this Actor. This ranges from -pi to pi radians.

    @@ -420,11 +424,11 @@ This ranges from -pi to pi radians.

    Improve this Doc - View Source + View Source

    StatusEffects

    -

    Status Effects

    +

    Gets status Effects.

    Declaration
    @@ -451,11 +455,11 @@ This ranges from -pi to pi radians.

    Improve this Doc - View Source + View Source

    TargetActorID

    -

    The target of the actor

    +

    Gets the target of the actor.

    Declaration
    @@ -482,11 +486,11 @@ This ranges from -pi to pi radians.

    Improve this Doc - View Source + View Source

    YalmDistanceX

    -

    The X distance from the local player in yalms.

    +

    Gets the X distance from the local player in yalms.

    Declaration
    @@ -513,11 +517,11 @@ This ranges from -pi to pi radians.

    Improve this Doc - View Source + View Source

    YalmDistanceY

    -

    The Y distance from the local player in yalms.

    +

    Gets the Y distance from the local player in yalms.

    Declaration
    @@ -546,7 +550,7 @@ This ranges from -pi to pi radians.

    Improve this Doc - View Source + View Source

    IEquatable<Actor>.Equals(Actor)

    @@ -603,7 +607,7 @@ This ranges from -pi to pi radians.

    Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.Chara.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.Chara.html index 9b29e5c77..c3aa6126d 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.Chara.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.Chara.html @@ -90,15 +90,6 @@
    Inherited Members
    - - - @@ -111,6 +102,9 @@ + @@ -126,6 +120,12 @@ + + @@ -164,11 +164,12 @@ Improve this Doc - View Source + View Source

    Chara(IntPtr, Actor, Dalamud)

    -

    Set up a new Chara with the provided memory representation.

    +

    Initializes a new instance of the Chara class. +This represents a non-static entity.

    Declaration
    @@ -212,11 +213,11 @@ Improve this Doc - View Source + View Source

    ClassJob

    -

    The ClassJob of this Chara.

    +

    Gets the ClassJob of this Chara.

    Declaration
    @@ -243,11 +244,11 @@ Improve this Doc - View Source + View Source

    CurrentCp

    -

    The current CP of this Chara.

    +

    Gets the current CP of this Chara.

    Declaration
    @@ -274,11 +275,11 @@ Improve this Doc - View Source + View Source

    CurrentGp

    -

    The current GP of this Chara.

    +

    Gets the current GP of this Chara.

    Declaration
    @@ -305,11 +306,11 @@ Improve this Doc - View Source + View Source

    CurrentHp

    -

    The current HP of this Chara.

    +

    Gets the current HP of this Chara.

    Declaration
    @@ -336,11 +337,11 @@ Improve this Doc - View Source + View Source

    CurrentMp

    -

    The current MP of this Chara.

    +

    Gets the current MP of this Chara.

    Declaration
    @@ -367,11 +368,12 @@ Improve this Doc - View Source + View Source

    Customize

    -

    Byte array describing the visual appearance of this Chara. Indexed by CustomizeIndex.

    +

    Gets a byte array describing the visual appearance of this Chara. +Indexed by CustomizeIndex.

    Declaration
    @@ -398,11 +400,11 @@ Improve this Doc - View Source + View Source

    Level

    -

    The level of this Chara.

    +

    Gets the level of this Chara.

    Declaration
    @@ -429,11 +431,11 @@ Improve this Doc - View Source + View Source

    MaxCp

    -

    The maximum CP of this Chara.

    +

    Gets the maximum CP of this Chara.

    Declaration
    @@ -460,11 +462,11 @@ Improve this Doc - View Source + View Source

    MaxGp

    -

    The maximum GP of this Chara.

    +

    Gets the maximum GP of this Chara.

    Declaration
    @@ -491,11 +493,11 @@ Improve this Doc - View Source + View Source

    MaxHp

    -

    The maximum HP of this Chara.

    +

    Gets the maximum HP of this Chara.

    Declaration
    @@ -522,11 +524,11 @@ Improve this Doc - View Source + View Source

    MaxMp

    -

    The maximum MP of this Chara.

    +

    Gets the maximum MP of this Chara.

    Declaration
    @@ -563,7 +565,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.html index c568f2f2d..536851889 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.html @@ -129,15 +129,6 @@ - - - @@ -150,6 +141,9 @@ + @@ -162,6 +156,12 @@ + + @@ -200,11 +200,12 @@ Improve this Doc - View Source + View Source

    BattleNpc(IntPtr, Actor, Dalamud)

    -

    Set up a new BattleNpc with the provided memory representation.

    +

    Initializes a new instance of the BattleNpc class. +Set up a new BattleNpc with the provided memory representation.

    Declaration
    @@ -248,11 +249,11 @@ Improve this Doc - View Source + View Source

    BattleNpcKind

    -

    The BattleNpc BattleNpcSubKind of this BattleNpc.

    +

    Gets the BattleNpc BattleNpcSubKind of this BattleNpc.

    Declaration
    @@ -279,11 +280,11 @@ Improve this Doc - View Source + View Source

    OwnerId

    -

    The ID of this BattleNpc's owner.

    +

    Gets the ID of this BattleNpc's owner.

    Declaration
    @@ -310,11 +311,11 @@ Improve this Doc - View Source + View Source

    TargetActorID

    -

    Target of the Battle NPC

    +

    Gets target of the Battle NPC.

    Declaration
    @@ -353,7 +354,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.html index 873589fe0..03b12999f 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.html @@ -73,7 +73,7 @@

    Enum BattleNpcSubKind

    -

    Enum describing possible BattleNpc kinds.

    +

    An Enum describing possible BattleNpc kinds.

    Namespace: Dalamud.Game.ClientState.Actors.Types.NonPlayer
    @@ -124,7 +124,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.EventObj.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.EventObj.html index d177a9990..12f0bf653 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.EventObj.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.EventObj.html @@ -88,15 +88,6 @@
    Inherited Members
    - - - @@ -109,6 +100,9 @@ + @@ -124,6 +118,12 @@ + + @@ -162,11 +162,12 @@ Improve this Doc - View Source + View Source

    EventObj(IntPtr, Actor, Dalamud)

    -

    Set up a new EventObj with the provided memory representation.

    +

    Initializes a new instance of the EventObj class. +This represents an Event Object.

    Declaration
    @@ -210,11 +211,11 @@ Improve this Doc - View Source + View Source

    DataId

    -

    The data ID of the NPC linking to their respective game data.

    +

    Gets the data ID of the NPC linking to their respective game data.

    Declaration
    @@ -251,7 +252,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.html index e1dcb84df..bdb8ed486 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.html @@ -123,15 +123,6 @@ - - - @@ -144,6 +135,9 @@ + @@ -159,6 +153,12 @@ + + @@ -197,11 +197,12 @@ Improve this Doc - View Source + View Source

    Npc(IntPtr, Actor, Dalamud)

    -

    Set up a new NPC with the provided memory representation.

    +

    Initializes a new instance of the Npc class. +This represents a Non-playable Character.

    Declaration
    @@ -245,11 +246,11 @@ Improve this Doc - View Source + View Source

    DataId

    -

    The data ID of the NPC linking to their respective game data.

    +

    Gets the data ID of the NPC linking to their respective game data.

    Declaration
    @@ -276,11 +277,11 @@ Improve this Doc - View Source + View Source

    NameId

    -

    The name ID of the NPC linking to their respective game data.

    +

    Gets the name ID of the NPC linking to their respective game data.

    Declaration
    @@ -317,7 +318,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.html index 27a66a17f..4fb7fcb0e 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.html @@ -89,7 +89,7 @@

    Enums

    BattleNpcSubKind

    -

    Enum describing possible BattleNpc kinds.

    +

    An Enum describing possible BattleNpc kinds.

    diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.PartyMember.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.PartyMember.html index e315c3bcc..c6778ae27 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.PartyMember.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.PartyMember.html @@ -117,7 +117,7 @@ Improve this Doc - View Source + View Source

    PartyMember(ActorTable, PartyMember)

    @@ -156,7 +156,7 @@ Improve this Doc - View Source + View Source

    Actor

    @@ -185,7 +185,7 @@ Improve this Doc - View Source + View Source

    CharacterName

    @@ -214,7 +214,7 @@ Improve this Doc - View Source + View Source

    ObjectKind

    @@ -243,7 +243,7 @@ Improve this Doc - View Source + View Source

    Unknown

    @@ -278,7 +278,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html b/docs/api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html index 414a558e6..3bde15369 100644 --- a/docs/api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html +++ b/docs/api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html @@ -122,15 +122,6 @@ - - - @@ -143,6 +134,9 @@ + @@ -155,6 +149,12 @@ + + @@ -193,11 +193,12 @@ Improve this Doc - View Source + View Source

    PlayerCharacter(IntPtr, Actor, Dalamud)

    -

    Set up a new player character with the provided memory representation.

    +

    Initializes a new instance of the PlayerCharacter class. +This represents a player character.

    Declaration
    @@ -241,11 +242,11 @@ Improve this Doc - View Source + View Source

    CompanyTag

    -

    The Free Company tag of this player.

    +

    Gets the Free Company tag of this player.

    Declaration
    @@ -272,11 +273,11 @@ Improve this Doc - View Source + View Source

    CurrentWorld

    -

    The current World of the character.

    +

    Gets the current World of the character.

    Declaration
    @@ -303,11 +304,11 @@ Improve this Doc - View Source + View Source

    HomeWorld

    -

    The home World of the character.

    +

    Gets the home World of the character.

    Declaration
    @@ -334,11 +335,11 @@ Improve this Doc - View Source + View Source

    TargetActorID

    -

    Target of the PlayerCharacter

    +

    Gets the target of the PlayerCharacter.

    Declaration
    @@ -377,7 +378,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Game.ClientState.ClientState.html b/docs/api/Dalamud.Game.ClientState.ClientState.html index 955d9bc79..bdbb928f2 100644 --- a/docs/api/Dalamud.Game.ClientState.ClientState.html +++ b/docs/api/Dalamud.Game.ClientState.ClientState.html @@ -513,7 +513,8 @@
    Declaration
    -
    public PlayerCharacter LocalPlayer { get; }
    +
    [CanBeNull]
    +public PlayerCharacter LocalPlayer { get; }
    Property Value
    @@ -589,7 +590,7 @@ - + diff --git a/docs/api/Dalamud.Game.ClientState.Structs.Actor.html b/docs/api/Dalamud.Game.ClientState.Structs.Actor.html index e6909de8f..c67d9cea9 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.Actor.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.Actor.html @@ -110,7 +110,7 @@ Improve this Doc - View Source + View Source

    ActorId

    @@ -139,7 +139,7 @@ Improve this Doc - View Source + View Source

    BattleNpcTargetActorId

    @@ -168,7 +168,7 @@ Improve this Doc - View Source + View Source

    ClassJob

    @@ -192,12 +192,99 @@
    System.EventHandler<ContentFinderCondition>System.EventHandler<Lumina.Excel.GeneratedSheets.ContentFinderCondition>
    + + | + Improve this Doc + + + View Source + +

    CurrentCastSpellActionId

    +
    +
    +
    Declaration
    +
    +
    public uint CurrentCastSpellActionId
    +
    +
    Field Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.UInt32
    + + | + Improve this Doc + + + View Source + +

    CurrentCastTargetActorId

    +
    +
    +
    Declaration
    +
    +
    public uint CurrentCastTargetActorId
    +
    +
    Field Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.UInt32
    + + | + Improve this Doc + + + View Source + +

    CurrentCastTime

    +
    +
    +
    Declaration
    +
    +
    public float CurrentCastTime
    +
    +
    Field Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.Single
    | Improve this Doc - View Source + View Source

    CurrentCp

    @@ -226,7 +313,7 @@ Improve this Doc - View Source + View Source

    CurrentGp

    @@ -255,7 +342,7 @@ Improve this Doc - View Source + View Source

    CurrentHp

    @@ -284,7 +371,7 @@ Improve this Doc - View Source + View Source

    CurrentMp

    @@ -313,7 +400,7 @@ Improve this Doc - View Source + View Source

    CurrentWorld

    @@ -342,7 +429,7 @@ Improve this Doc - View Source + View Source

    Customize

    @@ -371,7 +458,7 @@ Improve this Doc - View Source + View Source

    DataId

    @@ -395,12 +482,41 @@ + + | + Improve this Doc + + + View Source + +

    HitboxRadius

    +
    +
    +
    Declaration
    +
    +
    public float HitboxRadius
    +
    +
    Field Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.Single
    | Improve this Doc - View Source + View Source

    HomeWorld

    @@ -424,12 +540,70 @@ + + | + Improve this Doc + + + View Source + +

    IsCasting

    +
    +
    +
    Declaration
    +
    +
    public bool IsCasting
    +
    +
    Field Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.Boolean
    + + | + Improve this Doc + + + View Source + +

    IsCasting2

    +
    +
    +
    Declaration
    +
    +
    public bool IsCasting2
    +
    +
    Field Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.Boolean
    | Improve this Doc - View Source + View Source

    IsFriendly

    @@ -458,7 +632,7 @@ Improve this Doc - View Source + View Source

    Level

    @@ -487,7 +661,7 @@ Improve this Doc - View Source + View Source

    MaxCp

    @@ -516,7 +690,7 @@ Improve this Doc - View Source + View Source

    MaxGp

    @@ -545,7 +719,7 @@ Improve this Doc - View Source + View Source

    MaxHp

    @@ -574,7 +748,7 @@ Improve this Doc - View Source + View Source

    MaxMp

    @@ -603,7 +777,7 @@ Improve this Doc - View Source + View Source

    Name

    @@ -632,7 +806,7 @@ Improve this Doc - View Source + View Source

    NameId

    @@ -661,7 +835,7 @@ Improve this Doc - View Source + View Source

    ObjectKind

    @@ -690,7 +864,7 @@ Improve this Doc - View Source + View Source

    OwnerId

    @@ -719,7 +893,7 @@ Improve this Doc - View Source + View Source

    PlayerCharacterTargetActorId

    @@ -748,7 +922,7 @@ Improve this Doc - View Source + View Source

    PlayerTargetStatus

    @@ -777,7 +951,7 @@ Improve this Doc - View Source + View Source

    Position

    @@ -806,7 +980,7 @@ Improve this Doc - View Source + View Source

    Rotation

    @@ -835,7 +1009,7 @@ Improve this Doc - View Source + View Source

    SubKind

    @@ -859,12 +1033,41 @@ + + | + Improve this Doc + + + View Source + +

    TotalCastTime

    +
    +
    +
    Declaration
    +
    +
    public float TotalCastTime
    +
    +
    Field Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.Single
    | Improve this Doc - View Source + View Source

    UIStatusEffects

    @@ -893,7 +1096,7 @@ Improve this Doc - View Source + View Source

    YalmDistanceFromPlayerX

    @@ -922,7 +1125,7 @@ Improve this Doc - View Source + View Source

    YalmDistanceFromPlayerY

    @@ -957,7 +1160,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Game.ClientState.Structs.ActorOffsets.html b/docs/api/Dalamud.Game.ClientState.Structs.ActorOffsets.html index ed8100714..18df911cb 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.ActorOffsets.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.ActorOffsets.html @@ -117,7 +117,7 @@ Improve this Doc - View Source + View Source

    ActorId

    @@ -146,14 +146,14 @@ Improve this Doc - View Source + View Source

    BattleNpcTargetActorId

    Declaration
    -
    public const int BattleNpcTargetActorId = 6328
    +
    public const int BattleNpcTargetActorId = 6360
    Field Value
    @@ -175,7 +175,7 @@ Improve this Doc - View Source + View Source

    ClassJob

    @@ -204,14 +204,101 @@ Improve this Doc - View Source + View Source

    CompanyTag

    Declaration
    -
    public const int CompanyTag = 6290
    +
    public const int CompanyTag = 6322
    +
    +
    Field Value
    +
    + + + + + + + + + + + + +
    TypeDescription
    System.Int32
    + + | + Improve this Doc + + + View Source + +

    CurrentCastSpellActionId

    +
    +
    +
    Declaration
    +
    +
    public const int CurrentCastSpellActionId = 7044
    +
    +
    Field Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.Int32
    + + | + Improve this Doc + + + View Source + +

    CurrentCastTargetActorId

    +
    +
    +
    Declaration
    +
    +
    public const int CurrentCastTargetActorId = 7056
    +
    +
    Field Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.Int32
    + + | + Improve this Doc + + + View Source + +

    CurrentCastTime

    +
    +
    +
    Declaration
    +
    +
    public const int CurrentCastTime = 7092
    Field Value
    @@ -233,7 +320,7 @@ Improve this Doc - View Source + View Source

    CurrentCp

    @@ -262,7 +349,7 @@ Improve this Doc - View Source + View Source

    CurrentGp

    @@ -291,7 +378,7 @@ Improve this Doc - View Source + View Source

    CurrentHp

    @@ -320,7 +407,7 @@ Improve this Doc - View Source + View Source

    CurrentMp

    @@ -349,14 +436,14 @@ Improve this Doc - View Source + View Source

    CurrentWorld

    Declaration
    -
    public const int CurrentWorld = 6460
    +
    public const int CurrentWorld = 6492
    Field Value
    @@ -378,14 +465,14 @@ Improve this Doc - View Source + View Source

    Customize

    Declaration
    -
    public const int Customize = 6264
    +
    public const int Customize = 6296
    Field Value
    @@ -407,7 +494,7 @@ Improve this Doc - View Source + View Source

    DataId

    @@ -431,19 +518,106 @@
    + + | + Improve this Doc + + + View Source + +

    HitboxRadius

    +
    +
    +
    Declaration
    +
    +
    public const int HitboxRadius = 192
    +
    +
    Field Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.Int32
    | Improve this Doc - View Source + View Source

    HomeWorld

    Declaration
    -
    public const int HomeWorld = 6462
    +
    public const int HomeWorld = 6494
    +
    +
    Field Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.Int32
    + + | + Improve this Doc + + + View Source + +

    IsCasting

    +
    +
    +
    Declaration
    +
    +
    public const int IsCasting = 7040
    +
    +
    Field Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.Int32
    + + | + Improve this Doc + + + View Source + +

    IsCasting2

    +
    +
    +
    Declaration
    +
    +
    public const int IsCasting2 = 7042
    Field Value
    @@ -465,7 +639,7 @@ Improve this Doc - View Source + View Source

    IsFriendly

    @@ -494,7 +668,7 @@ Improve this Doc - View Source + View Source

    Level

    @@ -523,7 +697,7 @@ Improve this Doc - View Source + View Source

    MaxCp

    @@ -552,7 +726,7 @@ Improve this Doc - View Source + View Source

    MaxGp

    @@ -581,7 +755,7 @@ Improve this Doc - View Source + View Source

    MaxHp

    @@ -610,7 +784,7 @@ Improve this Doc - View Source + View Source

    MaxMp

    @@ -639,7 +813,7 @@ Improve this Doc - View Source + View Source

    Name

    @@ -668,14 +842,14 @@ Improve this Doc - View Source + View Source

    NameId

    Declaration
    -
    public const int NameId = 6432
    +
    public const int NameId = 6464
    Field Value
    @@ -697,7 +871,7 @@ Improve this Doc - View Source + View Source

    ObjectKind

    @@ -726,7 +900,7 @@ Improve this Doc - View Source + View Source

    OwnerId

    @@ -755,7 +929,7 @@ Improve this Doc - View Source + View Source

    PlayerCharacterTargetActorId

    @@ -784,7 +958,7 @@ Improve this Doc - View Source + View Source

    PlayerTargetStatus

    @@ -813,7 +987,7 @@ Improve this Doc - View Source + View Source

    Position

    @@ -842,7 +1016,7 @@ Improve this Doc - View Source + View Source

    Rotation

    @@ -871,7 +1045,7 @@ Improve this Doc - View Source + View Source

    SubKind

    @@ -895,19 +1069,48 @@
    + + | + Improve this Doc + + + View Source + +

    TotalCastTime

    +
    +
    +
    Declaration
    +
    +
    public const int TotalCastTime = 7096
    +
    +
    Field Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.Int32
    | Improve this Doc - View Source + View Source

    UIStatusEffects

    Declaration
    -
    public const int UIStatusEffects = 6616
    +
    public const int UIStatusEffects = 6648
    Field Value
    @@ -929,7 +1132,7 @@ Improve this Doc - View Source + View Source

    YalmDistanceFromPlayerX

    @@ -958,7 +1161,7 @@ Improve this Doc - View Source + View Source

    YalmDistanceFromPlayerY

    diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.html index 390c627c8..8b68f2e69 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.html @@ -116,7 +116,8 @@
    Declaration
    -
    public byte GLTimer
    +
    [Obsolete("GL has been removed from the game")]
    +public byte GLTimer
    Field Value
    @@ -138,7 +139,7 @@ Improve this Doc - View Source + View Source

    NumChakra

    @@ -167,14 +168,15 @@ Improve this Doc - View Source + View Source

    NumGLStacks

    Declaration
    -
    public byte NumGLStacks
    +
    [Obsolete("GL has been removed from the game")]
    +public byte NumGLStacks
    Field Value
    @@ -198,7 +200,7 @@ Improve this Doc - View Source + View Source

    IsGLTimerFroze()

    @@ -206,7 +208,8 @@
    Declaration
    -
    public bool IsGLTimerFroze()
    +
    [Obsolete("GL has been removed from the game")]
    +public bool IsGLTimerFroze()
    Returns
    @@ -234,7 +237,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.html b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.html index e9d3bdc7f..1ef61a43d 100644 --- a/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.html +++ b/docs/api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.html @@ -109,7 +109,7 @@ Improve this Doc - View Source + View Source

    HutonTimeLeft

    @@ -138,7 +138,7 @@ Improve this Doc - View Source + View Source

    Ninki

    @@ -167,14 +167,15 @@ Improve this Doc - View Source + View Source

    NumHutonManualCasts

    Declaration
    -
    public byte NumHutonManualCasts
    +
    [Obsolete("Does not appear to be used")]
    +public byte NumHutonManualCasts
    Field Value
    @@ -203,7 +204,8 @@
    Declaration
    -
    public byte TCJMudrasUsed
    +
    [Obsolete("Does not appear to be used")]
    +public byte TCJMudrasUsed
    Field Value
    @@ -231,7 +233,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Game.Internal.Framework.OnDestroyDelegate.html b/docs/api/Dalamud.Game.Internal.Framework.OnDestroyDelegate.html index aedb4e2d7..71eaf226c 100644 --- a/docs/api/Dalamud.Game.Internal.Framework.OnDestroyDelegate.html +++ b/docs/api/Dalamud.Game.Internal.Framework.OnDestroyDelegate.html @@ -107,7 +107,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.html b/docs/api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.html index 1b1e2f402..973dbfa6d 100644 --- a/docs/api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.html +++ b/docs/api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.html @@ -109,7 +109,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Game.Internal.Framework.html b/docs/api/Dalamud.Game.Internal.Framework.html index ffe1e4808..05792071e 100644 --- a/docs/api/Dalamud.Game.Internal.Framework.html +++ b/docs/api/Dalamud.Game.Internal.Framework.html @@ -122,7 +122,7 @@ Improve this Doc - View Source + View Source

    Framework(SigScanner, Dalamud)

    @@ -161,7 +161,7 @@ Improve this Doc - View Source + View Source

    StatsHistory

    @@ -192,7 +192,7 @@ Improve this Doc - View Source + View Source

    Address

    @@ -223,7 +223,7 @@ Improve this Doc - View Source + View Source

    Gui

    @@ -254,7 +254,7 @@ Improve this Doc - View Source + View Source

    Libc

    @@ -284,7 +284,7 @@ Improve this Doc - View Source + View Source

    Network

    @@ -315,7 +315,7 @@ Improve this Doc - View Source + View Source

    StatsEnabled

    @@ -347,7 +347,7 @@ Improve this Doc - View Source + View Source

    Dispose()

    @@ -362,7 +362,7 @@ Improve this Doc - View Source + View Source

    Enable()

    @@ -379,7 +379,7 @@ Improve this Doc - View Source + View Source

    OnUpdateEvent

    Event that gets fired every time the game framework updates.

    diff --git a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageHandledDelegate.html b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageHandledDelegate.html new file mode 100644 index 000000000..34bb432f2 --- /dev/null +++ b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageHandledDelegate.html @@ -0,0 +1,158 @@ + + + + + + + + Delegate ChatGui.OnMessageHandledDelegate + + + + + + + + + + + + + + + + +
    +
    + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TypeNameDescription
    XivChatTypetype
    System.UInt32senderId
    SeStringsender
    SeStringmessage
    + +
    + + +
    +
    + + +
    + + + + + + diff --git a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageUnhandledDelegate.html b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageUnhandledDelegate.html new file mode 100644 index 000000000..22a596017 --- /dev/null +++ b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageUnhandledDelegate.html @@ -0,0 +1,158 @@ + + + + + + + + Delegate ChatGui.OnMessageUnhandledDelegate + + + + + + + + + + + + + + + + +
    +
    + + + + +
    + + + +
    + + + + + + diff --git a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.html b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.html index 7f7e8f5e0..7b5752a57 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.ChatGui.html +++ b/docs/api/Dalamud.Game.Internal.Gui.ChatGui.html @@ -121,7 +121,7 @@ Improve this Doc - View Source + View Source

    ChatGui(IntPtr, SigScanner, Dalamud)

    @@ -165,7 +165,7 @@ Improve this Doc - View Source + View Source

    LastLinkedItemFlags

    @@ -195,7 +195,7 @@ Improve this Doc - View Source + View Source

    LastLinkedItemId

    @@ -227,7 +227,7 @@ Improve this Doc - View Source + View Source

    Dispose()

    @@ -242,7 +242,7 @@ Improve this Doc - View Source + View Source

    Enable()

    @@ -252,12 +252,44 @@
    public void Enable()
    + + | + Improve this Doc + + + View Source + + +

    Print(SeString)

    +
    +
    +
    Declaration
    +
    +
    public void Print(SeString message)
    +
    +
    Parameters
    + + + + + + + + + + + + + + + +
    TypeNameDescription
    SeStringmessage
    | Improve this Doc - View Source + View Source

    Print(String)

    @@ -289,7 +321,7 @@ Improve this Doc - View Source + View Source

    PrintChat(XivChatEntry)

    @@ -319,12 +351,44 @@ later to be processed when UpdateQueue() is called.

    + + | + Improve this Doc + + + View Source + + +

    PrintError(SeString)

    +
    +
    +
    Declaration
    +
    +
    public void PrintError(SeString message)
    +
    +
    Parameters
    + + + + + + + + + + + + + + + +
    TypeNameDescription
    SeStringmessage
    | Improve this Doc - View Source + View Source

    PrintError(String)

    @@ -356,7 +420,7 @@ later to be processed when UpdateQueue() is called.

    Improve this Doc - View Source + View Source

    UpdateQueue(Framework)

    @@ -391,7 +455,7 @@ later to be processed when UpdateQueue() is called.

    Improve this Doc - View Source + View Source

    OnChatMessage

    Event that will be fired when a chat message is sent to chat by the game.

    @@ -416,12 +480,42 @@ later to be processed when UpdateQueue() is called.

    + + | + Improve this Doc + + + View Source + +

    OnChatMessageHandled

    +

    Event that will be fired when a chat message is handled by Dalamud or a Plugin.

    +
    +
    +
    Declaration
    +
    +
    public event ChatGui.OnMessageHandledDelegate OnChatMessageHandled
    +
    +
    Event Type
    + + + + + + + + + + + + + +
    TypeDescription
    ChatGui.OnMessageHandledDelegate
    | Improve this Doc - View Source + View Source

    OnChatMessageRaw

    Event that will be fired when a chat message is sent by the game, containing raw, unparsed data.

    @@ -447,12 +541,42 @@ public event ChatGui.OnMessageRawDelegate OnChatMessageRaw + + | + Improve this Doc + + + View Source + +

    OnChatMessageUnhandled

    +

    Event that will be fired when a chat message is not handled by Dalamud or a Plugin.

    +
    +
    +
    Declaration
    +
    +
    public event ChatGui.OnMessageUnhandledDelegate OnChatMessageUnhandled
    +
    +
    Event Type
    + + + + + + + + + + + + + +
    TypeDescription
    ChatGui.OnMessageUnhandledDelegate
    | Improve this Doc - View Source + View Source

    OnCheckMessageHandled

    Event that allows you to stop messages from appearing in chat by setting the isHandled parameter to true.

    diff --git a/docs/api/Dalamud.Game.Internal.Gui.GameGui.html b/docs/api/Dalamud.Game.Internal.Gui.GameGui.html index 926ec9406..1e00fed05 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.GameGui.html +++ b/docs/api/Dalamud.Game.Internal.Gui.GameGui.html @@ -121,7 +121,7 @@ Improve this Doc - View Source + View Source

    GameGui(IntPtr, SigScanner, Dalamud)

    @@ -226,7 +226,7 @@ Improve this Doc - View Source + View Source

    GameUiHidden

    @@ -256,7 +256,7 @@ Improve this Doc - View Source + View Source

    HoveredAction

    @@ -287,7 +287,7 @@ Improve this Doc - View Source + View Source

    HoveredActionChanged

    @@ -318,7 +318,7 @@ Improve this Doc - View Source + View Source

    HoveredItem

    @@ -350,7 +350,7 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

    Improve this Doc - View Source + View Source

    HoveredItemChanged

    @@ -443,7 +443,7 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

    Improve this Doc - View Source + View Source

    Dispose()

    @@ -458,7 +458,7 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

    Improve this Doc - View Source + View Source

    Enable()

    @@ -468,12 +468,106 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

    public void Enable()
    + + | + Improve this Doc + + + View Source + + +

    FindAgentInterface(IntPtr)

    +
    +
    +
    Declaration
    +
    +
    public IntPtr FindAgentInterface(IntPtr addon)
    +
    +
    Parameters
    + + + + + + + + + + + + + + + +
    TypeNameDescription
    System.IntPtraddon
    +
    Returns
    + + + + + + + + + + + + + +
    TypeDescription
    System.IntPtr
    + + | + Improve this Doc + + + View Source + + +

    FindAgentInterface(String)

    +
    +
    +
    Declaration
    +
    +
    public IntPtr FindAgentInterface(string addonName)
    +
    +
    Parameters
    + + + + + + + + + + + + + + + +
    TypeNameDescription
    System.StringaddonName
    +
    Returns
    + + + + + + + + + + + + + +
    TypeDescription
    System.IntPtr
    | Improve this Doc - View Source + View Source

    GetAddonByName(String, Int32)

    @@ -525,7 +619,7 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

    Improve this Doc - View Source + View Source

    GetUIModule()

    @@ -557,7 +651,7 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

    Improve this Doc - View Source + View Source

    GetUiObjectByName(String, Int32)

    @@ -613,7 +707,7 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

    Improve this Doc - View Source + View Source @@ -660,13 +754,13 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

    | - Improve this Doc + Improve this Doc - View Source + View Source -

    ScreenToWorld(Vector2, out Vector3, Single)

    +

    ScreenToWorld(Vector2, out Vector3, Single)

    Converts screen coordinates to in-world coordinates via raycasting.

    @@ -685,13 +779,13 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

    - Vector2 + SharpDX.Vector2 screenPos

    Screen coordinates

    - Vector3 + SharpDX.Vector3 worldPos

    Converted coordinates

    @@ -725,7 +819,7 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

    Improve this Doc - View Source + View Source

    SetBgm(UInt16)

    @@ -754,13 +848,13 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

    | - Improve this Doc + Improve this Doc - View Source + View Source -

    WorldToScreen(Vector3, out Vector2)

    +

    WorldToScreen(Vector3, out Vector2)

    Converts in-world coordinates to screen coordinates (upper left corner origin).

    @@ -779,13 +873,13 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

    - Vector3 + SharpDX.Vector3 worldPos

    Coordinates in the world

    - Vector2 + SharpDX.Vector2 screenPos

    Converted coordinates

    @@ -815,7 +909,7 @@ If > 1.000.000, subtract 1.000.000 and treat it as HQ

    Improve this Doc - View Source + View Source

    OnUiHideToggled

    Event which is fired when the game UI hiding is toggled.

    diff --git a/docs/api/Dalamud.Game.Internal.Gui.PartyFinderListingEventArgs.html b/docs/api/Dalamud.Game.Internal.Gui.PartyFinderListingEventArgs.html index 80b8c43ae..b113d60ad 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.PartyFinderListingEventArgs.html +++ b/docs/api/Dalamud.Game.Internal.Gui.PartyFinderListingEventArgs.html @@ -114,11 +114,41 @@ | - Improve this Doc + Improve this Doc View Source + +

    BatchNumber

    +
    +
    +
    Declaration
    +
    +
    public int BatchNumber { get; }
    +
    +
    Property Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.Int32
    + + | + Improve this Doc + + + View Source +

    Visible

    diff --git a/docs/api/Dalamud.Game.Internal.Gui.Structs.JobFlagsExt.html b/docs/api/Dalamud.Game.Internal.Gui.Structs.JobFlagsExt.html index a16e8d010..433c1b0e3 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.Structs.JobFlagsExt.html +++ b/docs/api/Dalamud.Game.Internal.Gui.Structs.JobFlagsExt.html @@ -162,7 +162,7 @@ - ClassJob + Lumina.Excel.GeneratedSheets.ClassJob

    A ClassJob if found or null if not

    diff --git a/docs/api/Dalamud.Game.Internal.Gui.Structs.PartyFinderListing.html b/docs/api/Dalamud.Game.Internal.Gui.Structs.PartyFinderListing.html index d37bf489a..99553d486 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.Structs.PartyFinderListing.html +++ b/docs/api/Dalamud.Game.Internal.Gui.Structs.PartyFinderListing.html @@ -231,7 +231,7 @@ - System.Lazy<World> + System.Lazy<Lumina.Excel.GeneratedSheets.World> @@ -293,7 +293,7 @@ - System.Lazy<ContentFinderCondition> + System.Lazy<Lumina.Excel.GeneratedSheets.ContentFinderCondition> @@ -386,7 +386,7 @@ - System.Lazy<World> + System.Lazy<Lumina.Excel.GeneratedSheets.World> @@ -683,7 +683,7 @@ - System.Collections.Generic.IReadOnlyCollection<System.Lazy<ClassJob>> + System.Collections.Generic.IReadOnlyCollection<System.Lazy<Lumina.Excel.GeneratedSheets.ClassJob>> @@ -1057,7 +1057,7 @@ fills or the host ends it early.

    - System.Lazy<World> + System.Lazy<Lumina.Excel.GeneratedSheets.World> diff --git a/docs/api/Dalamud.Game.Internal.Gui.html b/docs/api/Dalamud.Game.Internal.Gui.html index ee20b28b7..3327df8c7 100644 --- a/docs/api/Dalamud.Game.Internal.Gui.html +++ b/docs/api/Dalamud.Game.Internal.Gui.html @@ -102,8 +102,12 @@

    ChatGui.OnMessageDelegate

    +

    ChatGui.OnMessageHandledDelegate

    +

    ChatGui.OnMessageRawDelegate

    +

    ChatGui.OnMessageUnhandledDelegate

    +

    GameGui.GetBaseUIObjectDelegate

    PartyFinderGui.PartyFinderListingEventDelegate

    diff --git a/docs/api/Dalamud.Game.Network.NetworkHandlers.html b/docs/api/Dalamud.Game.Network.NetworkHandlers.html index 3e083af81..1a1eba26c 100644 --- a/docs/api/Dalamud.Game.Network.NetworkHandlers.html +++ b/docs/api/Dalamud.Game.Network.NetworkHandlers.html @@ -176,7 +176,7 @@ - System.EventHandler<ContentFinderCondition> + System.EventHandler<Lumina.Excel.GeneratedSheets.ContentFinderCondition> diff --git a/docs/api/Dalamud.Game.SigScanner.html b/docs/api/Dalamud.Game.SigScanner.html index 726c69b3f..fe9388350 100644 --- a/docs/api/Dalamud.Game.SigScanner.html +++ b/docs/api/Dalamud.Game.SigScanner.html @@ -319,7 +319,7 @@ Improve this Doc - View Source + View Source

    Module

    @@ -345,6 +345,99 @@ + + | + Improve this Doc + + + View Source + + +

    RDataSectionBase

    +

    Gets the base address of the .rdata section search area.

    +
    +
    +
    Declaration
    +
    +
    public IntPtr RDataSectionBase { get; }
    +
    +
    Property Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.IntPtr
    + + | + Improve this Doc + + + View Source + + +

    RDataSectionOffset

    +

    Gets the offset of the .rdata section from the base of the module.

    +
    +
    +
    Declaration
    +
    +
    public long RDataSectionOffset { get; }
    +
    +
    Property Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.Int64
    + + | + Improve this Doc + + + View Source + + +

    RDataSectionSize

    +

    Gets the size of the .rdata section.

    +
    +
    +
    Declaration
    +
    +
    public int RDataSectionSize { get; }
    +
    +
    Property Value
    + + + + + + + + + + + + + +
    TypeDescription
    System.Int32
    | Improve this Doc @@ -476,7 +569,7 @@ Improve this Doc - View Source + View Source

    Dispose()

    @@ -492,7 +585,7 @@ Improve this Doc - View Source + View Source

    GetStaticAddressFromSig(String, Int32)

    @@ -550,7 +643,7 @@ Place your cursor on the line calling a static address, and create and IDA sig.< Improve this Doc - View Source + View Source

    ResolveRelativeAddress(IntPtr, Int32)

    @@ -606,7 +699,7 @@ Place your cursor on the line calling a static address, and create and IDA sig.< Improve this Doc - View Source + View Source

    Scan(IntPtr, Int32, String)

    @@ -668,7 +761,7 @@ Place your cursor on the line calling a static address, and create and IDA sig.< Improve this Doc - View Source + View Source

    ScanData(String)

    @@ -718,7 +811,7 @@ Place your cursor on the line calling a static address, and create and IDA sig.< Improve this Doc - View Source + View Source

    ScanModule(String)

    @@ -768,7 +861,7 @@ Place your cursor on the line calling a static address, and create and IDA sig.< Improve this Doc - View Source + View Source

    ScanText(String)

    diff --git a/docs/api/Dalamud.Game.Text.SeStringHandling.Payload.html b/docs/api/Dalamud.Game.Text.SeStringHandling.Payload.html index b52556b4c..6bd04cdbb 100644 --- a/docs/api/Dalamud.Game.Text.SeStringHandling.Payload.html +++ b/docs/api/Dalamud.Game.Text.SeStringHandling.Payload.html @@ -464,7 +464,7 @@ handlers such as the chat log.

    Improve this Doc - View Source + View Source

    GetInteger(BinaryReader)

    @@ -506,106 +506,12 @@ handlers such as the chat log.

    - - | - Improve this Doc - - - View Source - - -

    GetMarkerForIntegerBytes(Byte[])

    -
    -
    -
    Declaration
    -
    -
    protected virtual byte GetMarkerForIntegerBytes(byte[] bytes)
    -
    -
    Parameters
    - - - - - - - - - - - - - - - -
    TypeNameDescription
    System.Byte[]bytes
    -
    Returns
    - - - - - - - - - - - - - -
    TypeDescription
    System.Byte
    - - | - Improve this Doc - - - View Source - - -

    GetMarkerForPackedIntegerBytes(Byte[])

    -
    -
    -
    Declaration
    -
    -
    protected virtual byte GetMarkerForPackedIntegerBytes(byte[] bytes)
    -
    -
    Parameters
    - - - - - - - - - - - - - - - -
    TypeNameDescription
    System.Byte[]bytes
    -
    Returns
    - - - - - - - - - - - - - -
    TypeDescription
    System.Byte
    | Improve this Doc - View Source + View Source

    GetPackedIntegers(BinaryReader)

    @@ -613,7 +519,7 @@ handlers such as the chat log.

    Declaration
    -
    protected (uint, uint) GetPackedIntegers(BinaryReader input)
    +
    protected static (uint, uint) GetPackedIntegers(BinaryReader input)
    Parameters
    @@ -649,18 +555,18 @@ handlers such as the chat log.

    | - Improve this Doc + Improve this Doc - View Source + View Source -

    MakeInteger(UInt32, Boolean, Boolean)

    +

    MakeInteger(UInt32)

    Declaration
    -
    protected virtual byte[] MakeInteger(uint value, bool withMarker = true, bool incrementSmallInts = true)
    +
    protected static byte[] MakeInteger(uint value)
    Parameters
    @@ -677,16 +583,6 @@ handlers such as the chat log.

    - - - - - - - - - -
    value
    System.BooleanwithMarker
    System.BooleanincrementSmallInts
    Returns
    @@ -706,18 +602,18 @@ handlers such as the chat log.

    | - Improve this Doc + Improve this Doc - View Source + View Source -

    MakePackedInteger(UInt32, UInt32, Boolean)

    +

    MakePackedInteger(UInt32, UInt32)

    Declaration
    -
    protected byte[] MakePackedInteger(uint val1, uint val2, bool withMarker = true)
    +
    protected static byte[] MakePackedInteger(uint val1, uint val2)
    Parameters
    @@ -739,11 +635,6 @@ handlers such as the chat log.

    - - - - -
    val2
    System.BooleanwithMarker
    Returns
    diff --git a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.AutoTranslatePayload.html b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.AutoTranslatePayload.html index 7b99977e3..c656445dc 100644 --- a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.AutoTranslatePayload.html +++ b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.AutoTranslatePayload.html @@ -110,19 +110,13 @@ Payload.GetInteger(BinaryReader)
    - -
    System.Object.Equals(System.Object) @@ -156,7 +150,7 @@ Improve this Doc - View Source + View Source

    AutoTranslatePayload(DataManager, UInt32, UInt32)

    @@ -208,7 +202,7 @@ There is probably little use to create one of these, however.

    Improve this Doc - View Source + View Source

    Text

    @@ -242,7 +236,7 @@ There is probably little use to create one of these, however.

    Improve this Doc - View Source + View Source

    Type

    @@ -276,7 +270,7 @@ There is probably little use to create one of these, however.

    Improve this Doc - View Source + View Source

    DecodeImpl(BinaryReader, Int64)

    @@ -315,7 +309,7 @@ There is probably little use to create one of these, however.

    Improve this Doc - View Source + View Source

    EncodeImpl()

    @@ -347,7 +341,7 @@ There is probably little use to create one of these, however.

    Improve this Doc - View Source + View Source

    ToString()

    @@ -389,7 +383,7 @@ There is probably little use to create one of these, however.

    Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.DalamudLinkPayload.html b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.DalamudLinkPayload.html index 1f858445f..10acb23d3 100644 --- a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.DalamudLinkPayload.html +++ b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.DalamudLinkPayload.html @@ -105,19 +105,13 @@ Payload.GetInteger(BinaryReader)
    - -
    System.Object.Equals(System.Object) @@ -189,7 +183,8 @@
    Declaration
    -
    public string Plugin { get; }
    +
    [NotNull]
    +public string Plugin { get; }
    Property Value
    diff --git a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.EmphasisItalicPayload.html b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.EmphasisItalicPayload.html index d6c8f9885..5830954fe 100644 --- a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.EmphasisItalicPayload.html +++ b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.EmphasisItalicPayload.html @@ -106,19 +106,13 @@ Payload.GetInteger(BinaryReader) - -
    System.Object.Equals(System.Object) diff --git a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.IconPayload.html b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.IconPayload.html index 6df734485..4873c2441 100644 --- a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.IconPayload.html +++ b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.IconPayload.html @@ -106,19 +106,13 @@ Payload.GetInteger(BinaryReader)
    - -
    System.Object.Equals(System.Object) diff --git a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.html b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.html index baf35e900..59cdab7fa 100644 --- a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.html +++ b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.html @@ -106,13 +106,13 @@ Payload.GetInteger(BinaryReader)
    System.Object.Equals(System.Object) @@ -243,7 +243,8 @@ often the name is only present in a following text payload.

    Declaration
    -
    public bool IsHQ { get; }
    +
    [JsonProperty]
    +public bool IsHQ { get; }
    Property Value
    @@ -274,7 +275,8 @@ often the name is only present in a following text payload.

    Declaration
    -
    public Item Item { get; }
    +
    [JsonIgnore]
    +public Item Item { get; }
    Property Value
    @@ -286,7 +288,7 @@ often the name is only present in a following text payload.

    - + @@ -399,114 +401,6 @@ often the name is only present in a following text payload.

    ItemLumina.Excel.GeneratedSheets.Item
    Overrides
    - - | - Improve this Doc - - - View Source - - -

    GetMarkerForIntegerBytes(Byte[])

    -
    -
    -
    Declaration
    -
    -
    protected override byte GetMarkerForIntegerBytes(byte[] bytes)
    -
    -
    Parameters
    - - - - - - - - - - - - - - - -
    TypeNameDescription
    System.Byte[]bytes
    -
    Returns
    - - - - - - - - - - - - - -
    TypeDescription
    System.Byte
    -
    Overrides
    - - - | - Improve this Doc - - - View Source - - -

    MakeInteger(UInt32, Boolean, Boolean)

    -
    -
    -
    Declaration
    -
    -
    protected override byte[] MakeInteger(uint value, bool withMarker = true, bool incrementSmallInts = true)
    -
    -
    Parameters
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    TypeNameDescription
    System.UInt32value
    System.BooleanwithMarker
    System.BooleanincrementSmallInts
    -
    Returns
    - - - - - - - - - - - - - -
    TypeDescription
    System.Byte[]
    -
    Overrides
    - | Improve this Doc diff --git a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.MapLinkPayload.html b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.MapLinkPayload.html index 1ff1d140d..64ebbd042 100644 --- a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.MapLinkPayload.html +++ b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.MapLinkPayload.html @@ -106,16 +106,13 @@ Payload.GetInteger(BinaryReader)
    -
    System.Object.Equals(System.Object) @@ -283,7 +280,8 @@ but is an approximation and may be slightly off for some positions.

    Declaration
    -
    public string CoordinateString { get; }
    +
    [JsonIgnore]
    +public string CoordinateString { get; }
    Property Value
    @@ -345,7 +343,8 @@ but is an approximation and may be slightly off for some positions.

    Declaration
    -
    public Map Map { get; }
    +
    [JsonIgnore]
    +public Map Map { get; }
    Property Value
    @@ -357,7 +356,7 @@ but is an approximation and may be slightly off for some positions.

    - + @@ -379,7 +378,8 @@ but is an approximation and may be slightly off for some positions.

    Declaration
    -
    public string PlaceName { get; }
    +
    [JsonIgnore]
    +public string PlaceName { get; }
    Property Value
    MapLumina.Excel.GeneratedSheets.Map
    @@ -410,7 +410,8 @@ but is an approximation and may be slightly off for some positions.

    Declaration
    -
    public string PlaceNameRegion { get; }
    +
    [JsonIgnore]
    +public string PlaceNameRegion { get; }
    Property Value
    @@ -503,7 +504,8 @@ but is an approximation and may be slightly off for some positions.

    Declaration
    -
    public TerritoryType TerritoryType { get; }
    +
    [JsonIgnore]
    +public TerritoryType TerritoryType { get; }
    Property Value
    @@ -515,7 +517,7 @@ but is an approximation and may be slightly off for some positions.

    - + @@ -600,7 +602,8 @@ but is an approximation and may be slightly off for some positions.

    Declaration
    -
    public float YCoord { get; }
    +
    [JsonIgnore]
    +public float YCoord { get; }
    Property Value
    TerritoryTypeLumina.Excel.GeneratedSheets.TerritoryType
    @@ -690,55 +693,6 @@ but is an approximation and may be slightly off for some positions.

    Overrides
    - - | - Improve this Doc - - - View Source - - -

    GetMarkerForIntegerBytes(Byte[])

    -
    -
    -
    Declaration
    -
    -
    protected override byte GetMarkerForIntegerBytes(byte[] bytes)
    -
    -
    Parameters
    - - - - - - - - - - - - - - - -
    TypeNameDescription
    System.Byte[]bytes
    -
    Returns
    - - - - - - - - - - - - - -
    TypeDescription
    System.Byte
    -
    Overrides
    - | Improve this Doc diff --git a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.PlayerPayload.html b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.PlayerPayload.html index 24de9ab89..b9560c452 100644 --- a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.PlayerPayload.html +++ b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.PlayerPayload.html @@ -106,19 +106,13 @@ Payload.GetInteger(BinaryReader)
    - -
    System.Object.Equals(System.Object) @@ -210,7 +204,8 @@ The world name will always be present.

    Declaration
    -
    public string DisplayedName { get; }
    +
    [JsonIgnore]
    +public string DisplayedName { get; }
    Property Value
    @@ -241,7 +236,8 @@ The world name will always be present.

    Declaration
    -
    public string PlayerName { get; set; }
    +
    [JsonIgnore]
    +public string PlayerName { get; set; }
    Property Value
    @@ -304,7 +300,8 @@ The world name will always be present.

    Declaration
    -
    public World World { get; }
    +
    [JsonIgnore]
    +public World World { get; }
    Property Value
    @@ -316,7 +313,7 @@ The world name will always be present.

    - + diff --git a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.QuestPayload.html b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.QuestPayload.html index 5d473d6fb..59d894048 100644 --- a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.QuestPayload.html +++ b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.QuestPayload.html @@ -106,19 +106,13 @@ Payload.GetInteger(BinaryReader) - -
    System.Object.Equals(System.Object) @@ -203,7 +197,8 @@
    Declaration
    -
    public Quest Quest { get; }
    +
    [JsonIgnore]
    +public Quest Quest { get; }
    Property Value
    WorldLumina.Excel.GeneratedSheets.World
    @@ -215,7 +210,7 @@ - + diff --git a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.RawPayload.html b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.RawPayload.html index ba0ad5688..cc57f9792 100644 --- a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.RawPayload.html +++ b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.RawPayload.html @@ -108,19 +108,13 @@ payloads without modification.

    Payload.GetInteger(BinaryReader) - -
    System.Object.Equals(System.Object, System.Object) @@ -195,7 +189,8 @@ The returned data is a clone and modifications will not be persisted.

    Declaration
    -
    public byte[] Data { get; }
    +
    [JsonIgnore]
    +public byte[] Data { get; }
    Property Value
    QuestLumina.Excel.GeneratedSheets.Quest
    diff --git a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.SeHyphenPayload.html b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.SeHyphenPayload.html index 600e510b7..70d6a9393 100644 --- a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.SeHyphenPayload.html +++ b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.SeHyphenPayload.html @@ -110,19 +110,13 @@ Payload.GetInteger(BinaryReader) - -
    System.Object.ToString() diff --git a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.StatusPayload.html b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.StatusPayload.html index c9c986983..58ec7785f 100644 --- a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.StatusPayload.html +++ b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.StatusPayload.html @@ -106,19 +106,13 @@ Payload.GetInteger(BinaryReader)
    - -
    System.Object.Equals(System.Object) @@ -203,7 +197,8 @@
    Declaration
    -
    public Status Status { get; }
    +
    [JsonIgnore]
    +public Status Status { get; }
    Property Value
    @@ -215,7 +210,7 @@ - + diff --git a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.TextPayload.html b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.TextPayload.html index 2a36ee1d7..e270268e4 100644 --- a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.TextPayload.html +++ b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.TextPayload.html @@ -110,19 +110,13 @@ Payload.GetInteger(BinaryReader) - -
    System.Object.Equals(System.Object) @@ -202,7 +196,8 @@ This may contain SE's special unicode characters.

    Declaration
    -
    public string Text { get; set; }
    +
    [JsonIgnore]
    +public string Text { get; set; }
    Property Value
    StatusLumina.Excel.GeneratedSheets.Status
    diff --git a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.UIForegroundPayload.html b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.UIForegroundPayload.html index e72c398b7..800f89ed6 100644 --- a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.UIForegroundPayload.html +++ b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.UIForegroundPayload.html @@ -106,16 +106,13 @@ Payload.GetInteger(BinaryReader) -
    System.Object.Equals(System.Object) @@ -199,7 +196,8 @@
    Declaration
    -
    public ushort ColorKey { get; set; }
    +
    [JsonIgnore]
    +public ushort ColorKey { get; set; }
    Property Value
    @@ -261,7 +259,8 @@
    Declaration
    -
    public uint RGB { get; }
    +
    [JsonIgnore]
    +public uint RGB { get; }
    Property Value
    @@ -324,7 +323,8 @@
    Declaration
    -
    public UIColor UIColor { get; }
    +
    [JsonIgnore]
    +public UIColor UIColor { get; }
    Property Value
    @@ -336,7 +336,7 @@ - + @@ -448,55 +448,6 @@
    UIColorLumina.Excel.GeneratedSheets.UIColor
    Overrides
    - - | - Improve this Doc - - - View Source - - -

    GetMarkerForIntegerBytes(Byte[])

    -
    -
    -
    Declaration
    -
    -
    protected override byte GetMarkerForIntegerBytes(byte[] bytes)
    -
    -
    Parameters
    - - - - - - - - - - - - - - - -
    TypeNameDescription
    System.Byte[]bytes
    -
    Returns
    - - - - - - - - - - - - - -
    TypeDescription
    System.Byte
    -
    Overrides
    - | Improve this Doc diff --git a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.UIGlowPayload.html b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.UIGlowPayload.html index 2c9ee7f8f..7ab561fb8 100644 --- a/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.UIGlowPayload.html +++ b/docs/api/Dalamud.Game.Text.SeStringHandling.Payloads.UIGlowPayload.html @@ -106,16 +106,13 @@ Payload.GetInteger(BinaryReader)
    -
    System.Object.Equals(System.Object) @@ -199,7 +196,8 @@
    Declaration
    -
    public ushort ColorKey { get; set; }
    +
    [JsonIgnore]
    +public ushort ColorKey { get; set; }
    Property Value
    @@ -261,7 +259,8 @@
    Declaration
    -
    public uint RGB { get; }
    +
    [JsonIgnore]
    +public uint RGB { get; }
    Property Value
    @@ -324,7 +323,8 @@
    Declaration
    -
    public UIColor UIColor { get; }
    +
    [JsonIgnore]
    +public UIColor UIColor { get; }
    Property Value
    @@ -336,7 +336,7 @@ - + @@ -448,55 +448,6 @@
    UIColorLumina.Excel.GeneratedSheets.UIColor
    Overrides
    - - | - Improve this Doc - - - View Source - - -

    GetMarkerForIntegerBytes(Byte[])

    -
    -
    -
    Declaration
    -
    -
    protected override byte GetMarkerForIntegerBytes(byte[] bytes)
    -
    -
    Parameters
    - - - - - - - - - - - - - - - -
    TypeNameDescription
    System.Byte[]bytes
    -
    Returns
    - - - - - - - - - - - - - -
    TypeDescription
    System.Byte
    -
    Overrides
    - | Improve this Doc diff --git a/docs/api/Dalamud.Game.Text.SeStringHandling.SeString.html b/docs/api/Dalamud.Game.Text.SeStringHandling.SeString.html index e2ddd6656..2876da71d 100644 --- a/docs/api/Dalamud.Game.Text.SeStringHandling.SeString.html +++ b/docs/api/Dalamud.Game.Text.SeStringHandling.SeString.html @@ -115,7 +115,7 @@ Improve this Doc - View Source + View Source

    SeString(Payload[])

    @@ -149,7 +149,7 @@ Improve this Doc - View Source + View Source

    SeString(List<Payload>)

    @@ -158,7 +158,8 @@
    Declaration
    -
    public SeString(List<Payload> payloads)
    +
    [JsonConstructor]
    +public SeString(List<Payload> payloads)
    Parameters
    @@ -250,7 +251,7 @@ Improve this Doc - View Source + View Source

    Append(Payload)

    @@ -300,7 +301,7 @@ Improve this Doc - View Source + View Source

    Append(SeString)

    @@ -350,7 +351,7 @@ Improve this Doc - View Source + View Source

    Append(List<Payload>)

    @@ -400,7 +401,7 @@ Improve this Doc - View Source + View Source

    Encode()

    @@ -433,7 +434,7 @@ suitable for use by in-game handlers, such as the chat log.

    Improve this Doc - View Source + View Source

    FromJson(String, DataManager)

    @@ -489,7 +490,7 @@ suitable for use by in-game handlers, such as the chat log.

    Improve this Doc - View Source + View Source

    ToJson()

    @@ -521,7 +522,7 @@ suitable for use by in-game handlers, such as the chat log.

    Improve this Doc - View Source + View Source

    ToString()

    @@ -550,6 +551,58 @@ suitable for use by in-game handlers, such as the chat log.

    Overrides
    System.Object.ToString()
    +

    Operators +

    + + | + Improve this Doc + + + View Source + + +

    Implicit(String to SeString)

    +

    Implicitly convert a string into a SeString containing a TextPayload.

    +
    +
    +
    Declaration
    +
    +
    public static implicit operator SeString(string str)
    +
    +
    Parameters
    + + + + + + + + + + + + + + + +
    TypeNameDescription
    System.Stringstr

    string to convert

    +
    +
    Returns
    + + + + + + + + + + + + + +
    TypeDescription
    SeString

    Equivalent SeString

    +
    diff --git a/docs/api/Dalamud.Game.Text.SeStringHandling.SeStringManager.html b/docs/api/Dalamud.Game.Text.SeStringHandling.SeStringManager.html index c019dc7d0..08700fff3 100644 --- a/docs/api/Dalamud.Game.Text.SeStringHandling.SeStringManager.html +++ b/docs/api/Dalamud.Game.Text.SeStringHandling.SeStringManager.html @@ -148,13 +148,13 @@ | - Improve this Doc + Improve this Doc View Source - +

    Creates an SeString representing an entire Payload chain that can be used to link an item in the chat log.

    @@ -173,7 +173,7 @@ - Item + Lumina.Excel.GeneratedSheets.Item item

    The Lumina Item to link.

    diff --git a/docs/api/Dalamud.Game.Text.SeStringHandling.html b/docs/api/Dalamud.Game.Text.SeStringHandling.html index cf10078ec..63fda67ee 100644 --- a/docs/api/Dalamud.Game.Text.SeStringHandling.html +++ b/docs/api/Dalamud.Game.Text.SeStringHandling.html @@ -95,8 +95,6 @@

    Payload.EmbeddedInfoType

    -

    Payload.IntegerType

    -

    Payload.SeStringChunkType

    PayloadType

    diff --git a/docs/api/Dalamud.Interface.Colors.ImGuiColors.html b/docs/api/Dalamud.Interface.Colors.ImGuiColors.html new file mode 100644 index 000000000..fb2eb2932 --- /dev/null +++ b/docs/api/Dalamud.Interface.Colors.ImGuiColors.html @@ -0,0 +1,499 @@ + + + + + + + + Class ImGuiColors + + + + + + + + + + + + + + + + +
    +
    + + + + +
    + + + +
    + + + + + + diff --git a/docs/api/Dalamud.Interface.Colors.html b/docs/api/Dalamud.Interface.Colors.html new file mode 100644 index 000000000..4ac57d980 --- /dev/null +++ b/docs/api/Dalamud.Interface.Colors.html @@ -0,0 +1,119 @@ + + + + + + + + Namespace Dalamud.Interface.Colors + + + + + + + + + + + + + + + + +
    +
    + + + + +
    + + + +
    + + + + + + diff --git a/docs/api/Dalamud.Interface.Components.ImGuiComponents.html b/docs/api/Dalamud.Interface.Components.ImGuiComponents.html new file mode 100644 index 000000000..28eb6c2f0 --- /dev/null +++ b/docs/api/Dalamud.Interface.Components.ImGuiComponents.html @@ -0,0 +1,514 @@ + + + + + + + + Class ImGuiComponents + + + + + + + + + + + + + + + + +
    +
    + + + + +
    + + + +
    + + + + + + diff --git a/docs/api/Dalamud.Interface.Components.html b/docs/api/Dalamud.Interface.Components.html index a613fe645..0b00f6b54 100644 --- a/docs/api/Dalamud.Interface.Components.html +++ b/docs/api/Dalamud.Interface.Components.html @@ -75,10 +75,10 @@
    -

    Interfaces +

    Classes

    -

    IComponent

    -

    Base interface implementing a modular interface component.

    +

    ImGuiComponents

    +

    Class containing various methods providing ImGui components.

    diff --git a/docs/api/Dalamud.Interface.ImGuiHelpers.html b/docs/api/Dalamud.Interface.ImGuiHelpers.html index 4ace59261..a12f3e0cc 100644 --- a/docs/api/Dalamud.Interface.ImGuiHelpers.html +++ b/docs/api/Dalamud.Interface.ImGuiHelpers.html @@ -118,7 +118,7 @@ Improve this Doc - View Source + View Source

    GlobalScale

    @@ -149,7 +149,7 @@ Improve this Doc - View Source + View Source

    MainViewport

    @@ -177,12 +177,62 @@

    Methods

    + + | + Improve this Doc + + + View Source + + +

    DefaultColorPalette(Int32)

    +

    Creates default color palette for use with color pickers.

    +
    +
    +
    Declaration
    +
    +
    public static List<Vector4> DefaultColorPalette(int swatchCount = 32)
    +
    +
    Parameters
    + + + + + + + + + + + + + + + +
    TypeNameDescription
    System.Int32swatchCount

    The total number of swatches to use.

    +
    +
    Returns
    + + + + + + + + + + + + + +
    TypeDescription
    System.Collections.Generic.List<System.Numerics.Vector4>

    Default color palette.

    +
    | Improve this Doc - View Source + View Source

    ForceNextWindowMainViewport()

    @@ -198,7 +248,7 @@ Improve this Doc - View Source + View Source

    ScaledDummy(Vector2)

    @@ -223,6 +273,40 @@ System.Numerics.Vector2 size

    The size of the dummy.

    + + + + + + | + Improve this Doc + + + View Source + + +

    ScaledDummy(Single)

    +

    Create a dummy scaled by the global Dalamud scale.

    +
    +
    +
    Declaration
    +
    +
    public static void ScaledDummy(float size)
    +
    +
    Parameters
    + + + + + + + + + + + + + @@ -232,7 +316,7 @@ Improve this Doc - View Source + View Source

    ScaledRelativeSameLine(Single, Single)

    @@ -272,7 +356,7 @@ Improve this Doc - View Source + View Source

    SetNextWindowPosRelativeMainViewport(Vector2, ImGuiCond, Vector2)

    @@ -318,7 +402,7 @@ Improve this Doc - View Source + View Source

    SetWindowPosRelativeMainViewport(String, Vector2, ImGuiCond)

    @@ -370,7 +454,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Interface.MySinkExtensions.html b/docs/api/Dalamud.Interface.MySinkExtensions.html index 25164f2da..b2b47c216 100644 --- a/docs/api/Dalamud.Interface.MySinkExtensions.html +++ b/docs/api/Dalamud.Interface.MySinkExtensions.html @@ -114,13 +114,13 @@ | - Improve this Doc + Improve this Doc View Source -

    EventSink(LoggerSinkConfiguration, IFormatProvider)

    +

    EventSink(LoggerSinkConfiguration, IFormatProvider)

    Declaration
    @@ -138,7 +138,7 @@ - + @@ -159,7 +159,7 @@ - + diff --git a/docs/api/Dalamud.Interface.UiBuilder.html b/docs/api/Dalamud.Interface.UiBuilder.html index a509e4967..d33b42e76 100644 --- a/docs/api/Dalamud.Interface.UiBuilder.html +++ b/docs/api/Dalamud.Interface.UiBuilder.html @@ -175,7 +175,7 @@ It can be used to draw custom windows and overlays.

    - + diff --git a/docs/api/Dalamud.Localization.LocalizationChangedDelegate.html b/docs/api/Dalamud.Localization.LocalizationChangedDelegate.html index 0ee81806b..b6a77371e 100644 --- a/docs/api/Dalamud.Localization.LocalizationChangedDelegate.html +++ b/docs/api/Dalamud.Localization.LocalizationChangedDelegate.html @@ -111,7 +111,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Localization.html b/docs/api/Dalamud.Localization.html index f522b26df..9c5527824 100644 --- a/docs/api/Dalamud.Localization.html +++ b/docs/api/Dalamud.Localization.html @@ -115,19 +115,19 @@ | - Improve this Doc + Improve this Doc - View Source + View Source -

    Localization(String)

    +

    Localization(String, String, Boolean)

    Initializes a new instance of the Localization class.

    Declaration
    -
    public Localization(string workingDirectory)
    +
    public Localization(string locResourceDirectory, string locResourcePrefix = "", bool useEmbedded = false)
    Parameters
    TypeNameDescription
    System.Singlesize

    The size of the dummy.

    LoggerSinkConfigurationSerilog.Configuration.LoggerSinkConfiguration loggerConfiguration
    LoggerConfigurationSerilog.LoggerConfiguration
    DeviceSharpDX.Direct3D11.Device
    @@ -141,8 +141,20 @@ - + + + + + + + + + + + @@ -154,7 +166,7 @@ Improve this Doc - View Source + View Source

    ApplicableLangCodes

    Array of language codes which have a valid translation in Dalamud.

    @@ -181,12 +193,86 @@
    System.StringworkingDirectorylocResourceDirectory

    The working directory to load language files from.

    +
    System.StringlocResourcePrefix

    The prefix on the loc resource file name (e.g. dalamud_).

    +
    System.BooleanuseEmbedded

    Use embedded loc resource files.

    Methods

    + + | + Improve this Doc + + + View Source + + +

    ExportLocalizable()

    +

    Saves localizable JSON data in the current working directory for the provided assembly.

    +
    +
    +
    Declaration
    +
    +
    public void ExportLocalizable()
    +
    + + | + Improve this Doc + + + View Source + + +

    Localize(String, String)

    +

    Search the set-up localization data for the provided assembly for the given string key and return it. +If the key is not present, the fallback is shown. +The fallback is also required to create the string files to be localized.

    +
    +
    +
    Declaration
    +
    +
    public string Localize(string key, string fallBack)
    +
    +
    Parameters
    + + + + + + + + + + + + + + + + + + + + +
    TypeNameDescription
    System.Stringkey

    The string key to be returned.

    +
    System.StringfallBack

    The fallback string, usually your source language.

    +
    +
    Returns
    + + + + + + + + + + + + + +
    TypeDescription
    System.String

    The localized string, fallback or string key if not found.

    +
    | Improve this Doc - View Source + View Source

    SetupWithFallbacks()

    @@ -202,7 +288,7 @@ Improve this Doc - View Source + View Source

    SetupWithLangCode(String)

    @@ -236,7 +322,7 @@ Improve this Doc - View Source + View Source

    SetupWithUiCulture()

    @@ -254,7 +340,7 @@ Improve this Doc - View Source + View Source

    OnLocalizationChanged

    Event that occurs when the language is changed.

    @@ -290,7 +376,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/Dalamud.Plugin.DalamudPluginInterface.html b/docs/api/Dalamud.Plugin.DalamudPluginInterface.html index 5534f29aa..b0829b924 100644 --- a/docs/api/Dalamud.Plugin.DalamudPluginInterface.html +++ b/docs/api/Dalamud.Plugin.DalamudPluginInterface.html @@ -558,7 +558,7 @@ Improve this Doc - View Source + View Source

    AddChatLinkHandler(UInt32, Action<UInt32, SeString>)

    @@ -614,7 +614,7 @@ Improve this Doc - View Source + View Source

    Dispose()

    @@ -685,6 +685,38 @@ System.String

    directory with path of AppData/XIVLauncher/pluginConfig/PluginInternalName.

    + + + + + + | + Improve this Doc + + + View Source + + +

    GetPluginLocDirectory()

    +

    Get the loc directory.

    +
    +
    +
    Declaration
    +
    +
    public string GetPluginLocDirectory()
    +
    +
    Returns
    + + + + + + + + + + + @@ -694,7 +726,7 @@ Improve this Doc - View Source + View Source

    Log(String, Object[])

    @@ -735,7 +767,7 @@ public void Log(string messageTemplate, params object[] values)Improve this Doc - View Source + View Source

    LogError(Exception, String, Object[])

    @@ -782,7 +814,7 @@ public void LogError(Exception exception, string messageTemplate, params object[ Improve this Doc - View Source + View Source

    LogError(String, Object[])

    @@ -823,7 +855,7 @@ public void LogError(string messageTemplate, params object[] values)Improve this Doc - View Source + View Source

    RemoveChatLinkHandler()

    @@ -839,7 +871,7 @@ public void LogError(string messageTemplate, params object[] values)Improve this Doc - View Source + View Source

    RemoveChatLinkHandler(UInt32)

    @@ -907,7 +939,7 @@ public void LogError(string messageTemplate, params object[] values)Improve this Doc - View Source + View Source

    SendMessage(ExpandoObject)

    @@ -942,7 +974,7 @@ public void SendMessage(ExpandoObject message)Improve this Doc - View Source + View Source

    SendMessage(String, ExpandoObject)

    @@ -999,7 +1031,7 @@ public bool SendMessage(string pluginName, ExpandoObject message)Improve this Doc - View Source + View Source

    Subscribe(String, Action<ExpandoObject>)

    @@ -1040,7 +1072,7 @@ public void Subscribe(string pluginName, Action<ExpandoObject> action)Improve this Doc - View Source + View Source

    SubscribeAny(Action<String, ExpandoObject>)

    @@ -1075,7 +1107,7 @@ public void SubscribeAny(Action<string, ExpandoObject> action)Improve this Doc - View Source + View Source

    Unsubscribe(String)

    @@ -1110,7 +1142,7 @@ public void Unsubscribe(string pluginName)Improve this Doc - View Source + View Source

    UnsubscribeAny()

    diff --git a/docs/api/Dalamud.SafeMemory.html b/docs/api/Dalamud.SafeMemory.html index 5b37823c4..a871610f1 100644 --- a/docs/api/Dalamud.SafeMemory.html +++ b/docs/api/Dalamud.SafeMemory.html @@ -204,7 +204,8 @@ Please consider using these instead in performance-critical code.

    Declaration
    -
    public static T[] Read<T>(IntPtr address, int count)
    +    
    [CanBeNull]
    +public static T[] Read<T>(IntPtr address, int count)
         where T : struct
    Parameters
    @@ -339,7 +340,8 @@ Please consider using these instead in performance-critical code.

    Declaration
    -
    public static string ReadString(IntPtr address, int maxLength = 256)
    +
    [CanBeNull]
    +public static string ReadString(IntPtr address, int maxLength = 256)
    Parameters
    TypeDescription
    System.String

    directory with path of AppData/XIVLauncher/pluginConfig/PluginInternalName/loc.

    @@ -400,7 +402,8 @@ since Encoding.UTF8 destroys the FFXIV payload structure.

    Declaration
    -
    public static string ReadString(IntPtr address, Encoding encoding, int maxLength = 256)
    +
    [CanBeNull]
    +public static string ReadString(IntPtr address, Encoding encoding, int maxLength = 256)
    Parameters
    diff --git a/docs/api/Dalamud.Test.Game.Text.Sanitizer.SanitizerTests.html b/docs/api/Dalamud.Test.Game.Text.Sanitizer.SanitizerTests.html index aa88e2bd9..d4230e4a9 100644 --- a/docs/api/Dalamud.Test.Game.Text.Sanitizer.SanitizerTests.html +++ b/docs/api/Dalamud.Test.Game.Text.Sanitizer.SanitizerTests.html @@ -80,11 +80,35 @@
    System.Object
    SanitizerTests
    +
    +
    Inherited Members
    +
    + System.Object.ToString() +
    +
    + System.Object.Equals(System.Object) +
    +
    + System.Object.Equals(System.Object, System.Object) +
    +
    + System.Object.ReferenceEquals(System.Object, System.Object) +
    +
    + System.Object.GetHashCode() +
    +
    + System.Object.GetType() +
    +
    + System.Object.MemberwiseClone() +
    +
    Namespace: Dalamud.Test.Game.Text.Sanitizer
    Assembly: Dalamud.Test.dll
    Syntax
    -
    public class SanitizerTests : object
    +
    public class SanitizerTests

    Methods

    @@ -101,7 +125,14 @@
    Declaration
    -
    public void StringsAreSanitizedCorrectly(ClientLanguage clientLanguage, string unsanitizedString, string sanitizedString)
    +
    [Theory]
    +[InlineData(new object[]{ClientLanguage.English, "Pixie Cotton Hood of Healing", "Pixie Cotton Hood of Healing"})]
    +[InlineData(new object[]{ClientLanguage.Japanese, "アラガントームストーン:真理", "アラガントームストーン:真理"})]
    +[InlineData(new object[]{ClientLanguage.German, "Anemos-Pan\u0002\u0016\u0001\u0003zer\u0002\u0016\u0001\u0003hand\u0002\u0016\u0001\u0003schu\u0002\u0016\u0001\u0003he des Drachenbluts", "Anemos-Panzerhandschuhe des Drachenbluts"})]
    +[InlineData(new object[]{ClientLanguage.German, "Bienen-Spatha †", "Bienen-Spatha"})]
    +[InlineData(new object[]{ClientLanguage.French, "Le Diademe\u0002\u001d\u0001\u0003: terrains de chasse|Le Diademe\u0002\u001d\u0001\u0003: terrains de chasse", "Le Diademe: terrains de chasse|Le Diademe: terrains de chasse"})]
    +[InlineData(new object[]{ClientLanguage.French, "Cuir de bœuf", "Cuir de boeuf"})]
    +public void StringsAreSanitizedCorrectly(ClientLanguage clientLanguage, string unsanitizedString, string sanitizedString)
    Parameters
    diff --git a/docs/api/Dalamud.Test.LocalizationTests.html b/docs/api/Dalamud.Test.LocalizationTests.html index a0ccb2dde..219ff533f 100644 --- a/docs/api/Dalamud.Test.LocalizationTests.html +++ b/docs/api/Dalamud.Test.LocalizationTests.html @@ -80,11 +80,35 @@
    System.Object
    LocalizationTests
    +
    +
    Inherited Members
    +
    + System.Object.ToString() +
    +
    + System.Object.Equals(System.Object) +
    +
    + System.Object.Equals(System.Object, System.Object) +
    +
    + System.Object.ReferenceEquals(System.Object, System.Object) +
    +
    + System.Object.GetHashCode() +
    +
    + System.Object.GetType() +
    +
    + System.Object.MemberwiseClone() +
    +
    Namespace: Dalamud.Test
    Assembly: Dalamud.Test.dll
    Syntax
    -
    public class LocalizationTests : object
    +
    public class LocalizationTests

    Constructors

    @@ -118,7 +142,8 @@
    Declaration
    -
    public void SetupWithFallbacks_EventInvoked()
    +
    [Fact]
    +public void SetupWithFallbacks_EventInvoked()
    diff --git a/docs/api/Dalamud.Util.html b/docs/api/Dalamud.Util.html index e3a77366e..f587a1bd6 100644 --- a/docs/api/Dalamud.Util.html +++ b/docs/api/Dalamud.Util.html @@ -118,7 +118,7 @@ Improve this Doc - View Source + View Source

    AssemblyVersion

    @@ -151,7 +151,7 @@ Improve this Doc - View Source + View Source

    ByteArrayToHex(Byte[], Int32, Int32)

    @@ -213,7 +213,7 @@ Improve this Doc - View Source + View Source

    DumpMemory(IntPtr, Int32)

    @@ -244,6 +244,167 @@
    + + +
    System.Int32 len

    The length to read.

    +
    + + | + Improve this Doc + + + View Source + + +

    Fatal(String, String)

    +
    +
    +
    Declaration
    +
    +
    public static void Fatal(string message, string caption)
    +
    +
    Parameters
    + + + + + + + + + + + + + + + + + + + + +
    TypeNameDescription
    System.Stringmessage
    System.Stringcaption
    + + | + Improve this Doc + + + View Source + + +

    GetGitHash()

    +

    Gets the git hash value from the assembly +or null if it cannot be found.

    +
    +
    +
    Declaration
    +
    +
    public static string GetGitHash()
    +
    +
    Returns
    + + + + + + + + + + + + + +
    TypeDescription
    System.String

    The git hash of the assembly.

    +
    + + + +

    MessageBox(IntPtr, String, String, UInt32)

    +
    +
    +
    Declaration
    +
    +
    public static int MessageBox(IntPtr hWnd, string text, string caption, uint type)
    +
    +
    Parameters
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TypeNameDescription
    System.IntPtrhWnd
    System.Stringtext
    System.Stringcaption
    System.UInt32type
    +
    Returns
    + + + + + + + + + + + + + +
    TypeDescription
    System.Int32
    + + | + Improve this Doc + + + View Source + + +

    ShowObject(Object)

    +

    Show all properties and fields of the provided object via ImGui.

    +
    +
    +
    Declaration
    +
    +
    public static void ShowObject(object obj)
    +
    +
    Parameters
    + + + + + + + + + + + + + @@ -259,7 +420,7 @@ Improve this Doc
  • - View Source + View Source
  • diff --git a/docs/api/ImGuiNET.RangeAccessor-1.html b/docs/api/ImGuiNET.RangeAccessor-1.html index 401b18ca3..b5d1d1507 100644 --- a/docs/api/ImGuiNET.RangeAccessor-1.html +++ b/docs/api/ImGuiNET.RangeAccessor-1.html @@ -101,7 +101,6 @@
    Syntax
    public struct RangeAccessor<T>
    -
         where T : struct
    Type Parameters
    diff --git a/docs/api/ImGuiNET.RangePtrAccessor-1.html b/docs/api/ImGuiNET.RangePtrAccessor-1.html index 81ddbc2b8..dae6a6221 100644 --- a/docs/api/ImGuiNET.RangePtrAccessor-1.html +++ b/docs/api/ImGuiNET.RangePtrAccessor-1.html @@ -101,7 +101,6 @@
    Syntax
    public struct RangePtrAccessor<T>
    -
         where T : struct
    Type Parameters
    diff --git a/docs/api/ImGuiScene.FramerateLimit.LimitType.html b/docs/api/ImGuiScene.FramerateLimit.LimitType.html index e51fe717b..c27b07658 100644 --- a/docs/api/ImGuiScene.FramerateLimit.LimitType.html +++ b/docs/api/ImGuiScene.FramerateLimit.LimitType.html @@ -122,10 +122,10 @@ This will disable vsync regardless of the fps value.

    diff --git a/docs/api/ImGuiScene.FramerateLimit.html b/docs/api/ImGuiScene.FramerateLimit.html index 357f96fac..9c9248641 100644 --- a/docs/api/ImGuiScene.FramerateLimit.html +++ b/docs/api/ImGuiScene.FramerateLimit.html @@ -113,10 +113,10 @@ Vsync-enabled (sync to monitor refresh), or a specified fixed framerate (vsync d | - Improve this Doc + Improve this Doc - View Source + View Source

    FramerateLimit(FramerateLimit.LimitType, Int32)

    @@ -155,10 +155,10 @@ Vsync-enabled (sync to monitor refresh), or a specified fixed framerate (vsync d | - Improve this Doc + Improve this Doc - View Source + View Source

    FPS

    @@ -186,10 +186,10 @@ Vsync-enabled (sync to monitor refresh), or a specified fixed framerate (vsync d
    TypeNameDescription
    System.Objectobj

    The object to show.

    | - Improve this Doc + Improve this Doc - View Source + View Source

    Type

    @@ -219,10 +219,10 @@ Vsync-enabled (sync to monitor refresh), or a specified fixed framerate (vsync d | - Improve this Doc + Improve this Doc - View Source + View Source

    ToString()

    @@ -257,10 +257,10 @@ Vsync-enabled (sync to monitor refresh), or a specified fixed framerate (vsync d diff --git a/docs/api/ImGuiScene.GLTextureWrap.html b/docs/api/ImGuiScene.GLTextureWrap.html index a8d7517d1..5717105b7 100644 --- a/docs/api/ImGuiScene.GLTextureWrap.html +++ b/docs/api/ImGuiScene.GLTextureWrap.html @@ -121,10 +121,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle | - Improve this Doc + Improve this Doc - View Source + View Source

    GLTextureWrap(UInt32, Int32, Int32)

    @@ -165,10 +165,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle | - Improve this Doc + Improve this Doc - View Source + View Source

    Height

    @@ -195,10 +195,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle | - Improve this Doc + Improve this Doc - View Source + View Source

    ImGuiHandle

    @@ -225,10 +225,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle | - Improve this Doc + Improve this Doc - View Source + View Source

    Width

    @@ -257,10 +257,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle | - Improve this Doc + Improve this Doc - View Source + View Source

    Dispose()

    @@ -272,10 +272,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle
    | - Improve this Doc + Improve this Doc - View Source + View Source

    Dispose(Boolean)

    @@ -304,10 +304,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle | - Improve this Doc + Improve this Doc - View Source + View Source

    Finalize()

    @@ -332,10 +332,10 @@ Provides a simple wrapped view of the disposeable resource as well as the handle diff --git a/docs/api/ImGuiScene.IImGuiInputHandler.html b/docs/api/ImGuiScene.IImGuiInputHandler.html index 8a3c17a53..08902fe5f 100644 --- a/docs/api/ImGuiScene.IImGuiInputHandler.html +++ b/docs/api/ImGuiScene.IImGuiInputHandler.html @@ -91,10 +91,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    NewFrame(Int32, Int32)

    @@ -128,10 +128,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    SetIniPath(String)

    @@ -166,10 +166,10 @@ diff --git a/docs/api/ImGuiScene.IImGuiRenderer.html b/docs/api/ImGuiScene.IImGuiRenderer.html index fc389a009..6f8261250 100644 --- a/docs/api/ImGuiScene.IImGuiRenderer.html +++ b/docs/api/ImGuiScene.IImGuiRenderer.html @@ -86,10 +86,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Init(Object[])

    @@ -118,10 +118,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    NewFrame()

    @@ -133,10 +133,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    RenderDrawData(ImDrawDataPtr)

    @@ -165,10 +165,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Shutdown()

    @@ -186,10 +186,10 @@ diff --git a/docs/api/ImGuiScene.IRenderer.html b/docs/api/ImGuiScene.IRenderer.html index 04a1f8078..ee9219508 100644 --- a/docs/api/ImGuiScene.IRenderer.html +++ b/docs/api/ImGuiScene.IRenderer.html @@ -92,10 +92,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    ClearColor

    @@ -123,10 +123,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Debuggable

    @@ -154,10 +154,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Type

    @@ -185,10 +185,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Vsync

    @@ -218,10 +218,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    AttachToWindow(SimpleSDLWindow)

    @@ -255,10 +255,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    Clear()

    @@ -271,10 +271,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    CreateTexture(Void*, Int32, Int32, Int32)

    @@ -342,10 +342,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    ImGui_Init()

    @@ -357,10 +357,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    ImGui_NewFrame()

    @@ -372,10 +372,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    ImGui_RenderDrawData(ImDrawDataPtr)

    @@ -404,10 +404,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    ImGui_Shutdown()

    @@ -419,10 +419,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    Present()

    @@ -441,10 +441,10 @@ diff --git a/docs/api/ImGuiScene.ImGui_Impl_DX11.html b/docs/api/ImGuiScene.ImGui_Impl_DX11.html index 824e8ab53..fd7ee820a 100644 --- a/docs/api/ImGuiScene.ImGui_Impl_DX11.html +++ b/docs/api/ImGuiScene.ImGui_Impl_DX11.html @@ -124,10 +124,10 @@ Would be nice to organize it better, but it seems to work

    | - Improve this Doc + Improve this Doc - View Source + View Source

    CreateDeviceObjects()

    @@ -154,10 +154,10 @@ Would be nice to organize it better, but it seems to work

    | - Improve this Doc + Improve this Doc - View Source + View Source

    CreateFontsTexture()

    @@ -169,10 +169,10 @@ Would be nice to organize it better, but it seems to work

    | - Improve this Doc + Improve this Doc - View Source + View Source

    CreateWindow(ImGuiViewportPtr)

    @@ -201,10 +201,10 @@ Would be nice to organize it better, but it seems to work

    | - Improve this Doc + Improve this Doc - View Source + View Source

    DestroyWindow(ImGuiViewportPtr)

    @@ -233,10 +233,10 @@ Would be nice to organize it better, but it seems to work

    | - Improve this Doc + Improve this Doc - View Source + View Source

    Init(Object[])

    @@ -265,10 +265,10 @@ Would be nice to organize it better, but it seems to work

    | - Improve this Doc + Improve this Doc - View Source + View Source

    InvalidateDeviceObjects()

    @@ -280,10 +280,10 @@ Would be nice to organize it better, but it seems to work

    | - Improve this Doc + Improve this Doc - View Source + View Source

    NewFrame()

    @@ -295,10 +295,10 @@ Would be nice to organize it better, but it seems to work

    | - Improve this Doc + Improve this Doc - View Source + View Source

    RebuildFontTexture()

    @@ -310,10 +310,10 @@ Would be nice to organize it better, but it seems to work

    | - Improve this Doc + Improve this Doc - View Source + View Source

    RenderDrawData(ImDrawDataPtr)

    @@ -342,10 +342,10 @@ Would be nice to organize it better, but it seems to work

    | - Improve this Doc + Improve this Doc - View Source + View Source

    RenderWindow(ImGuiViewportPtr, IntPtr)

    @@ -379,10 +379,10 @@ Would be nice to organize it better, but it seems to work

    | - Improve this Doc + Improve this Doc - View Source + View Source

    SetupRenderState(ImDrawDataPtr)

    @@ -411,10 +411,10 @@ Would be nice to organize it better, but it seems to work

    | - Improve this Doc + Improve this Doc - View Source + View Source

    SetWindowSize(ImGuiViewportPtr, Vector2)

    @@ -448,10 +448,10 @@ Would be nice to organize it better, but it seems to work

    | - Improve this Doc + Improve this Doc - View Source + View Source

    Shutdown()

    @@ -463,10 +463,10 @@ Would be nice to organize it better, but it seems to work

    | - Improve this Doc + Improve this Doc - View Source + View Source

    SwapBuffers(ImGuiViewportPtr, IntPtr)

    @@ -510,10 +510,10 @@ Would be nice to organize it better, but it seems to work

    diff --git a/docs/api/ImGuiScene.ImGui_Impl_OpenGL3.html b/docs/api/ImGuiScene.ImGui_Impl_OpenGL3.html index f50459414..3066ecdba 100644 --- a/docs/api/ImGuiScene.ImGui_Impl_OpenGL3.html +++ b/docs/api/ImGuiScene.ImGui_Impl_OpenGL3.html @@ -121,10 +121,10 @@ State backup IS done for this renderer, because SDL does not play nicely when us | - Improve this Doc + Improve this Doc - View Source + View Source

    Init(Object[])

    @@ -153,10 +153,10 @@ State backup IS done for this renderer, because SDL does not play nicely when us | - Improve this Doc + Improve this Doc - View Source + View Source

    NewFrame()

    @@ -168,10 +168,10 @@ State backup IS done for this renderer, because SDL does not play nicely when us
    | - Improve this Doc + Improve this Doc - View Source + View Source

    RenderDrawData(ImDrawDataPtr)

    @@ -200,10 +200,10 @@ State backup IS done for this renderer, because SDL does not play nicely when us | - Improve this Doc + Improve this Doc - View Source + View Source

    Shutdown()

    @@ -225,10 +225,10 @@ State backup IS done for this renderer, because SDL does not play nicely when us diff --git a/docs/api/ImGuiScene.ImGui_Impl_SDL.html b/docs/api/ImGuiScene.ImGui_Impl_SDL.html index 44271d59f..5d1d25bcd 100644 --- a/docs/api/ImGuiScene.ImGui_Impl_SDL.html +++ b/docs/api/ImGuiScene.ImGui_Impl_SDL.html @@ -121,10 +121,10 @@ A near-direct port of | - Improve this Doc + Improve this Doc - View Source + View Source

    ImGui_Impl_SDL(IntPtr)

    @@ -155,10 +155,10 @@ A near-direct port of | - Improve this Doc + Improve this Doc - View Source + View Source

    Dispose()

    @@ -170,10 +170,10 @@ A near-direct port of | - Improve this Doc + Improve this Doc - View Source + View Source

    Dispose(Boolean)

    @@ -202,10 +202,10 @@ A near-direct port of | - Improve this Doc + Improve this Doc - View Source + View Source

    Finalize()

    @@ -217,10 +217,10 @@ A near-direct port of | - Improve this Doc + Improve this Doc - View Source + View Source

    NewFrame(Int32, Int32)

    @@ -254,10 +254,10 @@ A near-direct port of | - Improve this Doc + Improve this Doc - View Source + View Source

    SetIniPath(String)

    @@ -299,10 +299,10 @@ A near-direct port of
    diff --git a/docs/api/ImGuiScene.ImGui_Input_Impl_Direct.html b/docs/api/ImGuiScene.ImGui_Input_Impl_Direct.html index bcd7f209d..843d313b1 100644 --- a/docs/api/ImGuiScene.ImGui_Input_Impl_Direct.html +++ b/docs/api/ImGuiScene.ImGui_Input_Impl_Direct.html @@ -119,10 +119,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    ImGui_Input_Impl_Direct(IntPtr)

    @@ -153,10 +153,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Dispose()

    @@ -168,10 +168,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    Dispose(Boolean)

    @@ -200,10 +200,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Finalize()

    @@ -215,10 +215,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    IsImGuiCursor(IntPtr)

    @@ -262,10 +262,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    NewFrame(Int32, Int32)

    @@ -299,10 +299,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    SetIniPath(String)

    @@ -344,10 +344,10 @@ diff --git a/docs/api/ImGuiScene.MemUtil.html b/docs/api/ImGuiScene.MemUtil.html index 46c919d1e..d2179a088 100644 --- a/docs/api/ImGuiScene.MemUtil.html +++ b/docs/api/ImGuiScene.MemUtil.html @@ -114,10 +114,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    ToPointer<T>(T)

    @@ -182,10 +182,10 @@ diff --git a/docs/api/ImGuiScene.RawDX11Scene.BuildUIDelegate.html b/docs/api/ImGuiScene.RawDX11Scene.BuildUIDelegate.html index 00dae1865..9b5b194fc 100644 --- a/docs/api/ImGuiScene.RawDX11Scene.BuildUIDelegate.html +++ b/docs/api/ImGuiScene.RawDX11Scene.BuildUIDelegate.html @@ -89,10 +89,10 @@ diff --git a/docs/api/ImGuiScene.RawDX11Scene.NewInputFrameDelegate.html b/docs/api/ImGuiScene.RawDX11Scene.NewInputFrameDelegate.html index b331af9ad..5e407314c 100644 --- a/docs/api/ImGuiScene.RawDX11Scene.NewInputFrameDelegate.html +++ b/docs/api/ImGuiScene.RawDX11Scene.NewInputFrameDelegate.html @@ -89,10 +89,10 @@ diff --git a/docs/api/ImGuiScene.RawDX11Scene.NewRenderFrameDelegate.html b/docs/api/ImGuiScene.RawDX11Scene.NewRenderFrameDelegate.html index 458b25530..a5d3dda54 100644 --- a/docs/api/ImGuiScene.RawDX11Scene.NewRenderFrameDelegate.html +++ b/docs/api/ImGuiScene.RawDX11Scene.NewRenderFrameDelegate.html @@ -89,10 +89,10 @@ diff --git a/docs/api/ImGuiScene.RawDX11Scene.html b/docs/api/ImGuiScene.RawDX11Scene.html index 74c797830..dd7448e7b 100644 --- a/docs/api/ImGuiScene.RawDX11Scene.html +++ b/docs/api/ImGuiScene.RawDX11Scene.html @@ -118,10 +118,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    RawDX11Scene(IntPtr)

    @@ -150,10 +150,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    RawDX11Scene(IntPtr, IntPtr)

    @@ -189,10 +189,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    OnBuildUI

    User methods invoked every ImGui frame to construct custom UIs.

    @@ -219,10 +219,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    OnNewInputFrame

    @@ -248,10 +248,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    OnNewRenderFrame

    @@ -279,10 +279,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Device

    @@ -309,10 +309,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    ImGuiIniPath

    @@ -339,10 +339,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    SwapChain

    @@ -369,10 +369,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    WindowHandlePtr

    @@ -401,10 +401,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    CaptureScreenshot()

    @@ -431,10 +431,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Dispose()

    @@ -446,10 +446,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    Finalize()

    @@ -461,10 +461,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    InvalidateFonts()

    @@ -476,10 +476,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    IsImGuiCursor(IntPtr)

    @@ -523,10 +523,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    LoadImage(Byte[])

    @@ -570,10 +570,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    LoadImage(String)

    @@ -617,10 +617,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    LoadImageRaw(Byte[], Int32, Int32, Int32)

    @@ -679,10 +679,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    OnPostResize(Int32, Int32)

    @@ -716,10 +716,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    OnPreResize()

    @@ -731,10 +731,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    Render()

    @@ -756,10 +756,10 @@ diff --git a/docs/api/ImGuiScene.RendererFactory.RendererBackend.html b/docs/api/ImGuiScene.RendererFactory.RendererBackend.html index 8bab3f2f0..357b5cd52 100644 --- a/docs/api/ImGuiScene.RendererFactory.RendererBackend.html +++ b/docs/api/ImGuiScene.RendererFactory.RendererBackend.html @@ -113,10 +113,10 @@ diff --git a/docs/api/ImGuiScene.RendererFactory.html b/docs/api/ImGuiScene.RendererFactory.html index f0219f9cc..c7cf4f808 100644 --- a/docs/api/ImGuiScene.RendererFactory.html +++ b/docs/api/ImGuiScene.RendererFactory.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    CreateRenderer(RendererFactory.RendererBackend, Boolean)

    @@ -176,10 +176,10 @@ diff --git a/docs/api/ImGuiScene.SDLWindowGL.html b/docs/api/ImGuiScene.SDLWindowGL.html index 1aa53037b..44e9b547b 100644 --- a/docs/api/ImGuiScene.SDLWindowGL.html +++ b/docs/api/ImGuiScene.SDLWindowGL.html @@ -147,10 +147,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    InitForRenderer(IRenderer)

    @@ -183,10 +183,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    WindowCreationFlags(WindowCreateInfo)

    @@ -245,10 +245,10 @@ diff --git a/docs/api/ImGuiScene.SimpleD3D.html b/docs/api/ImGuiScene.SimpleD3D.html index b7e413ae7..5ad99f9cb 100644 --- a/docs/api/ImGuiScene.SimpleD3D.html +++ b/docs/api/ImGuiScene.SimpleD3D.html @@ -120,10 +120,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    ClearColor

    @@ -151,10 +151,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Debuggable

    @@ -182,10 +182,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Type

    @@ -213,10 +213,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Vsync

    @@ -246,10 +246,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    AttachToWindow(SimpleSDLWindow)

    @@ -280,10 +280,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Clear()

    @@ -296,10 +296,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    CreateTexture(Void*, Int32, Int32, Int32)

    @@ -367,10 +367,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    Dispose()

    @@ -382,10 +382,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    Dispose(Boolean)

    @@ -414,10 +414,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Finalize()

    @@ -429,10 +429,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    ImGui_Init()

    @@ -444,10 +444,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    ImGui_NewFrame()

    @@ -459,10 +459,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    ImGui_RenderDrawData(ImDrawDataPtr)

    @@ -491,10 +491,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    ImGui_Shutdown()

    @@ -506,10 +506,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    Present()

    @@ -535,10 +535,10 @@ diff --git a/docs/api/ImGuiScene.SimpleImGuiScene.BuildUIDelegate.html b/docs/api/ImGuiScene.SimpleImGuiScene.BuildUIDelegate.html index 57ed2f4e3..64de1e50e 100644 --- a/docs/api/ImGuiScene.SimpleImGuiScene.BuildUIDelegate.html +++ b/docs/api/ImGuiScene.SimpleImGuiScene.BuildUIDelegate.html @@ -89,10 +89,10 @@ diff --git a/docs/api/ImGuiScene.SimpleImGuiScene.html b/docs/api/ImGuiScene.SimpleImGuiScene.html index 02473ab55..1ff3bfd44 100644 --- a/docs/api/ImGuiScene.SimpleImGuiScene.html +++ b/docs/api/ImGuiScene.SimpleImGuiScene.html @@ -121,10 +121,10 @@ Currently this always creates a new window rather than take ownership of an exis | - Improve this Doc + Improve this Doc - View Source + View Source

    SimpleImGuiScene(RendererFactory.RendererBackend, WindowCreateInfo, Boolean)

    @@ -168,10 +168,10 @@ Currently this always creates a new window rather than take ownership of an exis | - Improve this Doc + Improve this Doc - View Source + View Source

    OnBuildUI

    User methods invoked every ImGui frame to construct custom UIs.

    @@ -200,10 +200,10 @@ Currently this always creates a new window rather than take ownership of an exis | - Improve this Doc + Improve this Doc - View Source + View Source

    FramerateLimit

    @@ -232,10 +232,10 @@ The default behavior is | - Improve this Doc + Improve this Doc - View Source + View Source

    ImGuiIniPath

    @@ -262,10 +262,10 @@ The default behavior is | - Improve this Doc + Improve this Doc - View Source + View Source

    OnSDLEvent

    @@ -294,10 +294,10 @@ This is just a convenience wrapper around | - Improve this Doc + Improve this Doc - View Source + View Source

    PauseWhenUnfocused

    @@ -327,10 +327,10 @@ if you are rendering dynamic data.

    | - Improve this Doc + Improve this Doc - View Source + View Source

    Renderer

    @@ -358,10 +358,10 @@ if you are rendering dynamic data.

    | - Improve this Doc + Improve this Doc - View Source + View Source

    ShouldQuit

    @@ -389,10 +389,10 @@ if you are rendering dynamic data.

    | - Improve this Doc + Improve this Doc - View Source + View Source

    Window

    @@ -422,10 +422,10 @@ if you are rendering dynamic data.

    | - Improve this Doc + Improve this Doc - View Source + View Source

    CreateOverlay(RendererFactory.RendererBackend, SDL.SDL_Scancode, Single[], Boolean)

    @@ -489,10 +489,10 @@ if you are rendering dynamic data.

    | - Improve this Doc + Improve this Doc - View Source + View Source

    Dispose()

    @@ -504,10 +504,10 @@ if you are rendering dynamic data.

    | - Improve this Doc + Improve this Doc - View Source + View Source

    Dispose(Boolean)

    @@ -536,10 +536,10 @@ if you are rendering dynamic data.

    | - Improve this Doc + Improve this Doc - View Source + View Source

    Finalize()

    @@ -551,10 +551,10 @@ if you are rendering dynamic data.

    | - Improve this Doc + Improve this Doc - View Source + View Source

    LoadImage(Byte[])

    @@ -604,10 +604,10 @@ if you are rendering dynamic data.

    | - Improve this Doc + Improve this Doc - View Source + View Source

    LoadImage(String)

    @@ -657,10 +657,10 @@ if you are rendering dynamic data.

    | - Improve this Doc + Improve this Doc - View Source + View Source

    LoadImageRaw(Byte[], Int32, Int32, Int32)

    @@ -719,10 +719,10 @@ if you are rendering dynamic data.

    | - Improve this Doc + Improve this Doc - View Source + View Source

    Run()

    @@ -736,10 +736,10 @@ requests an exit (via | - Improve this Doc + Improve this Doc - View Source + View Source

    Update()

    @@ -763,10 +763,10 @@ This method does not check any quit conditions.

    diff --git a/docs/api/ImGuiScene.SimpleOGL3.html b/docs/api/ImGuiScene.SimpleOGL3.html index 64a21de78..359416c37 100644 --- a/docs/api/ImGuiScene.SimpleOGL3.html +++ b/docs/api/ImGuiScene.SimpleOGL3.html @@ -120,10 +120,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    ClearColor

    @@ -151,10 +151,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    ContextMajorVersion

    @@ -181,10 +181,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    ContextMinorVersion

    @@ -211,10 +211,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Debuggable

    @@ -242,10 +242,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Type

    @@ -273,10 +273,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Vsync

    @@ -306,10 +306,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    AttachToWindow(SimpleSDLWindow)

    @@ -340,10 +340,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Clear()

    @@ -356,10 +356,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    CreateTexture(Void*, Int32, Int32, Int32)

    @@ -418,10 +418,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Dispose()

    @@ -433,10 +433,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    Dispose(Boolean)

    @@ -465,10 +465,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Finalize()

    @@ -480,10 +480,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    ImGui_Init()

    @@ -495,10 +495,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    ImGui_NewFrame()

    @@ -510,10 +510,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    ImGui_RenderDrawData(ImDrawDataPtr)

    @@ -542,10 +542,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    ImGui_Shutdown()

    @@ -557,10 +557,10 @@
    | - Improve this Doc + Improve this Doc - View Source + View Source

    Present()

    @@ -586,10 +586,10 @@
    diff --git a/docs/api/ImGuiScene.SimpleSDLWindow.ProcessEventDelegate.html b/docs/api/ImGuiScene.SimpleSDLWindow.ProcessEventDelegate.html index b7028f84a..26221cc0f 100644 --- a/docs/api/ImGuiScene.SimpleSDLWindow.ProcessEventDelegate.html +++ b/docs/api/ImGuiScene.SimpleSDLWindow.ProcessEventDelegate.html @@ -106,10 +106,10 @@
    diff --git a/docs/api/ImGuiScene.SimpleSDLWindow.html b/docs/api/ImGuiScene.SimpleSDLWindow.html index 7ec5569db..a7576617c 100644 --- a/docs/api/ImGuiScene.SimpleSDLWindow.html +++ b/docs/api/ImGuiScene.SimpleSDLWindow.html @@ -120,10 +120,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    OnSDLEvent

    @@ -151,10 +151,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    WantsClose

    @@ -182,10 +182,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Window

    @@ -215,10 +215,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    CreateColorKey(Single, Single, Single)

    @@ -276,10 +276,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Dispose()

    @@ -291,10 +291,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Dispose(Boolean)

    @@ -323,10 +323,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Finalize()

    @@ -338,10 +338,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    GetHWnd()

    @@ -370,10 +370,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    InitForRenderer(IRenderer)

    @@ -402,10 +402,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    MakeTransparent(UInt32)

    @@ -440,10 +440,10 @@ Transparent regions behave as if they are not present, and can be clicked throug | - Improve this Doc + Improve this Doc - View Source + View Source

    ProcessEvents()

    @@ -457,10 +457,10 @@ User handlers from | - Improve this Doc + Improve this Doc - View Source + View Source

    WindowCreationFlags(WindowCreateInfo)

    @@ -517,10 +517,10 @@ User handlers from diff --git a/docs/api/ImGuiScene.TextureWrap.html b/docs/api/ImGuiScene.TextureWrap.html index b263d4661..cffc4057d 100644 --- a/docs/api/ImGuiScene.TextureWrap.html +++ b/docs/api/ImGuiScene.TextureWrap.html @@ -92,10 +92,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Height

    @@ -122,10 +122,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    ImGuiHandle

    @@ -153,10 +153,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Width

    @@ -189,10 +189,10 @@
    diff --git a/docs/api/ImGuiScene.WindowCreateInfo.html b/docs/api/ImGuiScene.WindowCreateInfo.html index a33d8f8a8..3bec529fb 100644 --- a/docs/api/ImGuiScene.WindowCreateInfo.html +++ b/docs/api/ImGuiScene.WindowCreateInfo.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    Fullscreen

    Whether the window should be created fullscreen. This is a borderless windowed mode and will not affect desktop resolution. @@ -146,10 +146,10 @@ Fullscreen windows are "always on top".

    | - Improve this Doc + Improve this Doc - View Source + View Source

    Height

    The height of the window. Ignored for fullscreen windows.

    @@ -176,10 +176,10 @@ Fullscreen windows are "always on top".

    | - Improve this Doc + Improve this Doc - View Source + View Source

    Title

    The window title. This will not be visible for fullscreen windows except in things like task manager.

    @@ -206,10 +206,10 @@ Fullscreen windows are "always on top".

    | - Improve this Doc + Improve this Doc - View Source + View Source

    TransparentColor

    An optional float[4] color key used to make any matching portion of the window's client area transparent. For example, setting this to magenta will @@ -238,10 +238,10 @@ Values are red, green, blue from 0 to 1.

    | - Improve this Doc + Improve this Doc - View Source + View Source

    Width

    The width of the window. Ignored for fullscreen windows.

    @@ -268,10 +268,10 @@ Values are red, green, blue from 0 to 1.

    | - Improve this Doc + Improve this Doc - View Source + View Source

    XPos

    The x location of the top left corner of the window. Ignored for fullscreen windows.

    @@ -298,10 +298,10 @@ Values are red, green, blue from 0 to 1.

    | - Improve this Doc + Improve this Doc - View Source + View Source

    YPos

    The y location of the top left corner of the window. Ignored for fullscreen windows.

    @@ -334,10 +334,10 @@ Values are red, green, blue from 0 to 1.

    diff --git a/docs/api/ImGuiScene.WindowFactory.html b/docs/api/ImGuiScene.WindowFactory.html index 25a47bbf8..9177a54c2 100644 --- a/docs/api/ImGuiScene.WindowFactory.html +++ b/docs/api/ImGuiScene.WindowFactory.html @@ -115,10 +115,10 @@ | - Improve this Doc + Improve this Doc - View Source + View Source

    CreateForRenderer(IRenderer, WindowCreateInfo)

    @@ -176,10 +176,10 @@ diff --git a/docs/api/toc.html b/docs/api/toc.html index feaa1138c..9767f03c7 100644 --- a/docs/api/toc.html +++ b/docs/api/toc.html @@ -76,19 +76,6 @@ -
  • - - Dalamud.Data.TransientSheet - - -
  • Dalamud.Game @@ -382,9 +369,15 @@
  • ChatGui.OnMessageDelegate
  • +
  • + ChatGui.OnMessageHandledDelegate +
  • ChatGui.OnMessageRawDelegate
  • +
  • + ChatGui.OnMessageUnhandledDelegate +
  • GameGui
  • @@ -629,9 +622,6 @@
  • Payload.EmbeddedInfoType
  • -
  • - Payload.IntegerType -
  • Payload.SeStringChunkType
  • @@ -727,13 +717,23 @@ +
  • + + Dalamud.Interface.Colors + + +
  • Dalamud.Interface.Components
  • diff --git a/docs/manifest.json b/docs/manifest.json index df1db3148..8998783e0 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -9,7 +9,7 @@ "output": { ".html": { "relative_path": "README.html", - "hash": "g6qdwVgHIWulxe63U0Y6pw==" + "hash": "75vNApFAfKH8wHvmf6pUUA==" } }, "is_incremental": false, @@ -33,7 +33,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Configuration.IPluginConfiguration.html", - "hash": "ajYZIvbgXbTP9De8s4iyKQ==" + "hash": "ppCMbqXVpppTr6STw88aPg==" } }, "is_incremental": false, @@ -45,7 +45,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Configuration.PluginConfigurations.html", - "hash": "N+DVNGODIpkZa/InD/kEZQ==" + "hash": "P6Lqnp5bK1jekU36GG+LmQ==" } }, "is_incremental": false, @@ -57,7 +57,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Configuration.html", - "hash": "A+YTBnVEQLzussdR5++K6Q==" + "hash": "naRWQ+rKy126Pa9F/NxgcQ==" } }, "is_incremental": false, @@ -69,7 +69,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Dalamud.html", - "hash": "8FLmzSPLHT3zT2IpOgjqdg==" + "hash": "Kw4RcLqOwO+jFq6zhhfnUg==" } }, "is_incremental": false, @@ -93,7 +93,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Data.DataManager.html", - "hash": "JAGCfNlhGpSruuvW8QnEFQ==" + "hash": "+8u5XWnknjTNhSuzs9blPw==" } }, "is_incremental": false, @@ -105,7 +105,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Data.LuminaExtensions.TexFileExtensions.html", - "hash": "uY0eK9IbMXdHiTeLRZoOAA==" + "hash": "YoyY1YbEmGFlke/sy1xOtg==" } }, "is_incremental": false, @@ -117,43 +117,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Data.LuminaExtensions.html", - "hash": "0zRU+gpUZzj2gYU/YLHhpQ==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Data.TransientSheet.Completion.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Data.TransientSheet.Completion.html", - "hash": "ZZjEWqwf2G98eiJPvlf/Dw==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Data.TransientSheet.PetMirage.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Data.TransientSheet.PetMirage.html", - "hash": "zshJ+T4F72mUIfzVZBJuFA==" - } - }, - "is_incremental": false, - "version": "" - }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Data.TransientSheet.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Data.TransientSheet.html", - "hash": "DCc7GfJg/yHYyTWqzrlT2w==" + "hash": "0DyU4ZNSygx1PLiEfV+A0w==" } }, "is_incremental": false, @@ -177,7 +141,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.EntryPoint.html", - "hash": "You645t9zthwOTgpXX115Q==" + "hash": "2Atf44RBZQVQrzDJHSaneg==" } }, "is_incremental": false, @@ -201,7 +165,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.ActorTable.html", - "hash": "j5qqecOBsWDyvVLPrnY8gA==" + "hash": "q/17GogbEOiNUfAg4LZp3A==" } }, "is_incremental": false, @@ -237,7 +201,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Position3.html", - "hash": "FO57zz2O8/Tu4TKuWTT2/Q==" + "hash": "gTHeklPzMLcBF/teI5AKhg==" } }, "is_incremental": false, @@ -261,7 +225,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Resolvers.ClassJob.html", - "hash": "XTjT6Ne58GPc7CdHFG0/fQ==" + "hash": "QESo7r3j6TJsqTILAxX6Mw==" } }, "is_incremental": false, @@ -273,7 +237,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Resolvers.World.html", - "hash": "xOWSbhRp4I/2qpLY9IrV3g==" + "hash": "C9o/B4QcIcR346qYOqZpDA==" } }, "is_incremental": false, @@ -297,7 +261,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.TargetOffsets.html", - "hash": "3yFr/aDm9kwXQPNl4QLaHA==" + "hash": "iHt+TfdQIvg5TG+NQ1fS1w==" } }, "is_incremental": false, @@ -309,7 +273,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Targets.html", - "hash": "ynqWR+GnzUFsij4xTgH+Rw==" + "hash": "Gc/GDEAhZL0MxrrHTb5puw==" } }, "is_incremental": false, @@ -321,7 +285,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.Actor.html", - "hash": "s6yQ5Q0O9LRerQV1qJ64Bw==" + "hash": "TvvC6WSgV10Yk19i36yzWQ==" } }, "is_incremental": false, @@ -333,7 +297,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.Chara.html", - "hash": "/dye10pgHVut38xM8SGXjA==" + "hash": "oerUUjIwu8F5PPxeoxesoA==" } }, "is_incremental": false, @@ -345,7 +309,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpc.html", - "hash": "uFvfLBb0eDkMm/Xpp6Uyrg==" + "hash": "5JbGGugRje7nu08abhBEvg==" } }, "is_incremental": false, @@ -357,7 +321,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.BattleNpcSubKind.html", - "hash": "ZDUeiHyFoaCih0jUPlufMw==" + "hash": "Is+LqzNtUte9TbhBm4zaKQ==" } }, "is_incremental": false, @@ -369,7 +333,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.EventObj.html", - "hash": "0vngXgDq/4hxsgCULy4pxQ==" + "hash": "zywCSTy87Zyx5ihy9NVFiQ==" } }, "is_incremental": false, @@ -381,7 +345,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.Npc.html", - "hash": "5Ojqm4dEZd+R5M7cPdfR9A==" + "hash": "I/OazZn4vEiUWGtLkoOLXA==" } }, "is_incremental": false, @@ -393,7 +357,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.NonPlayer.html", - "hash": "7YEaCz3pYCSwNqW1DgASDg==" + "hash": "kie8Vv3XF0UYpQJYCqoXXw==" } }, "is_incremental": false, @@ -405,7 +369,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.PartyMember.html", - "hash": "ozsGhdEwRRKToiA025WVmQ==" + "hash": "Q9RuRlY2OuCWSuRBNhhkBw==" } }, "is_incremental": false, @@ -417,7 +381,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Actors.Types.PlayerCharacter.html", - "hash": "/aBwvXLmUu6DlptxRmi7VQ==" + "hash": "z8hJ+RiZdXQHFDvnecv5yA==" } }, "is_incremental": false, @@ -453,7 +417,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.ClientState.html", - "hash": "n5u2sVCLgY19/DNXXAbqTg==" + "hash": "LPvUSpJdX1wGXNriIpjyuw==" } }, "is_incremental": false, @@ -525,7 +489,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.Actor.html", - "hash": "X2h1XZDCbGdmpCSLG8yUJg==" + "hash": "1HYaNSEK4a37LDorrmbwBg==" } }, "is_incremental": false, @@ -537,7 +501,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.ActorOffsets.html", - "hash": "TEEBY6O52+CKDl7TMIb4gA==" + "hash": "pfKX/RhszLRgFa8iHQL9zA==" } }, "is_incremental": false, @@ -693,7 +657,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.MNKGauge.html", - "hash": "a0bYTa74w7iYNULrJaq6aA==" + "hash": "OsEkZVX5XRQfDUowze2thg==" } }, "is_incremental": false, @@ -717,7 +681,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.ClientState.Structs.JobGauge.NINGauge.html", - "hash": "VkCvXycJexnOCfbOqIQqjA==" + "hash": "wPCCPDe8J6p6CDEF2+irDA==" } }, "is_incremental": false, @@ -1041,7 +1005,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Framework.OnDestroyDelegate.html", - "hash": "SzWodMUepRWU3jW+I5bcIw==" + "hash": "kQVJL9L/cCIWe7gpZx9QFw==" } }, "is_incremental": false, @@ -1053,7 +1017,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Framework.OnUpdateDelegate.html", - "hash": "07TZPu5Xdo14BvgbYbmljg==" + "hash": "dMNi6VKZlyqDjteNb3fScw==" } }, "is_incremental": false, @@ -1065,7 +1029,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Framework.html", - "hash": "EFUsmNG0CzUtBgdTzvF0cg==" + "hash": "HfJIhKyBED6jwpqsYbQN5g==" } }, "is_incremental": false, @@ -1119,6 +1083,18 @@ "is_incremental": false, "version": "" }, + { + "type": "ManagedReference", + "source_relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageHandledDelegate.yml", + "output": { + ".html": { + "relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageHandledDelegate.html", + "hash": "+OI0weU6o9C7OXp7ufkApg==" + } + }, + "is_incremental": false, + "version": "" + }, { "type": "ManagedReference", "source_relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate.yml", @@ -1131,13 +1107,25 @@ "is_incremental": false, "version": "" }, + { + "type": "ManagedReference", + "source_relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageUnhandledDelegate.yml", + "output": { + ".html": { + "relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageUnhandledDelegate.html", + "hash": "CFMTx6TbPCZEiE3FINWE8Q==" + } + }, + "is_incremental": false, + "version": "" + }, { "type": "ManagedReference", "source_relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.yml", "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.ChatGui.html", - "hash": "geghH5beYEmOPi1A50SVzQ==" + "hash": "ow3+TG6lgjzHdfHENXpRqg==" } }, "is_incremental": false, @@ -1161,7 +1149,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.GameGui.html", - "hash": "ipVlTosBrsIdG+JaP6rt2Q==" + "hash": "p+mRtEyITR9vPwH8zqRtWA==" } }, "is_incremental": false, @@ -1221,7 +1209,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.PartyFinderListingEventArgs.html", - "hash": "XpZLUPTKyQx+99pwNagbRA==" + "hash": "C5x7Qz4K1vwosxvSGeWBpg==" } }, "is_incremental": false, @@ -1329,7 +1317,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.Structs.JobFlagsExt.html", - "hash": "bhZrV/NP6yYrcJsvS5bPHw==" + "hash": "imyik/inMheTau9IAReR0w==" } }, "is_incremental": false, @@ -1365,7 +1353,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.Structs.PartyFinderListing.html", - "hash": "NGNUBK6kTWQJ89/d2q8W6Q==" + "hash": "vqnpVM97aVPYB+UgQs0tLw==" } }, "is_incremental": false, @@ -1557,7 +1545,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Internal.Gui.html", - "hash": "iN2qGH7ZrrbKrKal59LngA==" + "hash": "1qn/GZFNpwoTG1vvrUdW8g==" } }, "is_incremental": false, @@ -1677,7 +1665,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Network.NetworkHandlers.html", - "hash": "BNeNaeFTWk61mhWV9kO9Ug==" + "hash": "10woSDGk7iZ+W5Pl4Ua/yA==" } }, "is_incremental": false, @@ -1785,7 +1773,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.SigScanner.html", - "hash": "143dWTk6ERSHBUY8nICmgw==" + "hash": "Wv8d3ChS6PsZI1DpNnNzgg==" } }, "is_incremental": false, @@ -1887,18 +1875,6 @@ "is_incremental": false, "version": "" }, - { - "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.yml", - "output": { - ".html": { - "relative_path": "api/Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.html", - "hash": "KbzBTjDFt/6rvZIY+u+pGg==" - } - }, - "is_incremental": false, - "version": "" - }, { "type": "ManagedReference", "source_relative_path": "api/Dalamud.Game.Text.SeStringHandling.Payload.SeStringChunkType.yml", @@ -1917,7 +1893,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Text.SeStringHandling.Payload.html", - "hash": "X9+kKshqlJFxp4GLa62wuQ==" + "hash": "qbs/kOUNEwkbWO/i1K957g==" } }, "is_incremental": false, @@ -1941,7 +1917,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Text.SeStringHandling.Payloads.AutoTranslatePayload.html", - "hash": "eE8+jC0yQ5VP+lnkAh1Ang==" + "hash": "MczFc+6vhRAHcDiqBZ0x8w==" } }, "is_incremental": false, @@ -1953,7 +1929,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Text.SeStringHandling.Payloads.DalamudLinkPayload.html", - "hash": "STLwk/aA9Xm1P41iTS4crQ==" + "hash": "YjAeKCwJtBMHdjn9+99bkg==" } }, "is_incremental": false, @@ -1965,7 +1941,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Text.SeStringHandling.Payloads.EmphasisItalicPayload.html", - "hash": "eX6h8mwZZ2zYMdarixD9eQ==" + "hash": "HBTxUCdwsr8oltA2DydTEQ==" } }, "is_incremental": false, @@ -1977,7 +1953,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Text.SeStringHandling.Payloads.IconPayload.html", - "hash": "YHoYyFBxs2RLB7RftC0vCg==" + "hash": "qGlyvm4nPuQCWA2Kb4QhoQ==" } }, "is_incremental": false, @@ -1989,7 +1965,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.html", - "hash": "rT9vT//mQaC0NCcwQZ4gDQ==" + "hash": "dFKP7kzzWVxYNyMGUqNfBA==" } }, "is_incremental": false, @@ -2001,7 +1977,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Text.SeStringHandling.Payloads.MapLinkPayload.html", - "hash": "Zjsz40AahMZPXC1VZW06ig==" + "hash": "42uF6go1M1QEecsBqEE8fA==" } }, "is_incremental": false, @@ -2013,7 +1989,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Text.SeStringHandling.Payloads.PlayerPayload.html", - "hash": "VIN6Xa9adB9rxbEyz4n6XQ==" + "hash": "w3n2FJ1btUmnKRX14NFY7A==" } }, "is_incremental": false, @@ -2025,7 +2001,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Text.SeStringHandling.Payloads.QuestPayload.html", - "hash": "k5L0mmvtfnXWLTCjlSxnww==" + "hash": "DOMGsrYC/b95psADutO14g==" } }, "is_incremental": false, @@ -2037,7 +2013,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Text.SeStringHandling.Payloads.RawPayload.html", - "hash": "TRMItnSDNP6ugx9QEI4snA==" + "hash": "7G3OIlru5qZQ11N/+3l54A==" } }, "is_incremental": false, @@ -2049,7 +2025,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Text.SeStringHandling.Payloads.SeHyphenPayload.html", - "hash": "M+QEqRfzNYKJIYTyi8Ogjg==" + "hash": "H00Xvkg5Ote35LrASGeadg==" } }, "is_incremental": false, @@ -2061,7 +2037,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Text.SeStringHandling.Payloads.StatusPayload.html", - "hash": "HF/zR1Gr5hYrgOfLXEU80g==" + "hash": "FTuqTxWQ82B5fiGrLV3+fw==" } }, "is_incremental": false, @@ -2073,7 +2049,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Text.SeStringHandling.Payloads.TextPayload.html", - "hash": "CdN+B/NmZ1Q9avtzDGwfNg==" + "hash": "Klvg0XamQPruuFiOSrx2ug==" } }, "is_incremental": false, @@ -2085,7 +2061,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Text.SeStringHandling.Payloads.UIForegroundPayload.html", - "hash": "URzIsMqNHWNReKzFUJFfoQ==" + "hash": "mAw6IiHMohrwHfeLYltO4A==" } }, "is_incremental": false, @@ -2097,7 +2073,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Text.SeStringHandling.Payloads.UIGlowPayload.html", - "hash": "pIEL0bA1/+eUAI01r7sDWg==" + "hash": "Ody9eTB9knCZ/mFdxaK/lQ==" } }, "is_incremental": false, @@ -2121,7 +2097,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Text.SeStringHandling.SeString.html", - "hash": "a48Y32QnOhUbKf/NfOiBoQ==" + "hash": "YDyss93fsy75oZdy+ghb5A==" } }, "is_incremental": false, @@ -2133,7 +2109,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Text.SeStringHandling.SeStringManager.html", - "hash": "62orjK0xNKVGLxGlbY7OYA==" + "hash": "lxm7C4AjLOhcrd66SKg0yQ==" } }, "is_incremental": false, @@ -2145,7 +2121,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Game.Text.SeStringHandling.html", - "hash": "QU6gWYy4HbQ0R3p37vSScA==" + "hash": "oOetUcVDk5jzgvIXdzn5Cw==" } }, "is_incremental": false, @@ -2249,11 +2225,35 @@ }, { "type": "ManagedReference", - "source_relative_path": "api/Dalamud.Interface.Components.IComponent.yml", + "source_relative_path": "api/Dalamud.Interface.Colors.ImGuiColors.yml", "output": { ".html": { - "relative_path": "api/Dalamud.Interface.Components.IComponent.html", - "hash": "aYlj5v07IkPmnqXo9qao2w==" + "relative_path": "api/Dalamud.Interface.Colors.ImGuiColors.html", + "hash": "sJl0HEZInmHQpmduNBBxBQ==" + } + }, + "is_incremental": false, + "version": "" + }, + { + "type": "ManagedReference", + "source_relative_path": "api/Dalamud.Interface.Colors.yml", + "output": { + ".html": { + "relative_path": "api/Dalamud.Interface.Colors.html", + "hash": "PafiEjwh0rI2pKXd0R0rRg==" + } + }, + "is_incremental": false, + "version": "" + }, + { + "type": "ManagedReference", + "source_relative_path": "api/Dalamud.Interface.Components.ImGuiComponents.yml", + "output": { + ".html": { + "relative_path": "api/Dalamud.Interface.Components.ImGuiComponents.html", + "hash": "UiYQ1kjUo+HKpUcDM/wm5A==" } }, "is_incremental": false, @@ -2265,7 +2265,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Interface.Components.html", - "hash": "Q5GMIlsMbQjQ3Xk+WIIVng==" + "hash": "tN5zY0Krq9+P7Zf65mg6dQ==" } }, "is_incremental": false, @@ -2301,7 +2301,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Interface.ImGuiHelpers.html", - "hash": "bsUzf5kdepnCQWHFmcZGIA==" + "hash": "Y4TdvVmj/0OoGGYCpKhSyg==" } }, "is_incremental": false, @@ -2313,7 +2313,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Interface.MySinkExtensions.html", - "hash": "pQGZePtG6vDaKHjMdaNOXA==" + "hash": "lCUup0TubXczz2elG6VV0Q==" } }, "is_incremental": false, @@ -2325,7 +2325,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Interface.UiBuilder.html", - "hash": "9EiAFe3cYkJnc7B/F9aenA==" + "hash": "Y+BubOZPfd9RxMyphHBKMQ==" } }, "is_incremental": false, @@ -2385,7 +2385,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Localization.LocalizationChangedDelegate.html", - "hash": "hKnbim4VXWEaCR9VJeA0aA==" + "hash": "nFYQRT9bxQUPMNMWhGmSrg==" } }, "is_incremental": false, @@ -2397,7 +2397,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Localization.html", - "hash": "32K+lnJoslRHxVEdbIp/qw==" + "hash": "VgDazW+MucvCOoCdg4JwTw==" } }, "is_incremental": false, @@ -2421,7 +2421,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Plugin.DalamudPluginInterface.html", - "hash": "zXhC6lu7h7OZphq8Q7FdmA==" + "hash": "lkGs700VCT5ZvYSz2WKqqg==" } }, "is_incremental": false, @@ -2493,7 +2493,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.SafeMemory.html", - "hash": "QuCSwpfOhhBazNB4uhvFWQ==" + "hash": "BHVoeu9a5LrPNYk3N3CciQ==" } }, "is_incremental": false, @@ -2505,7 +2505,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Test.Game.Text.Sanitizer.SanitizerTests.html", - "hash": "+JIrQ7AXFz6gPVaSfCtuNw==" + "hash": "+H004EXaipmUfBkPpH9QjA==" } }, "is_incremental": false, @@ -2529,7 +2529,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Test.LocalizationTests.html", - "hash": "VM+eK02uqPKeNjMf6XludA==" + "hash": "I9aU2UCgR0k5uwZx0yfOcA==" } }, "is_incremental": false, @@ -2553,7 +2553,7 @@ "output": { ".html": { "relative_path": "api/Dalamud.Util.html", - "hash": "GUziyEpTRIDRtInZnN4fKA==" + "hash": "g0ouN+6+1UKKeVQloh32tQ==" } }, "is_incremental": false, @@ -5721,7 +5721,7 @@ "output": { ".html": { "relative_path": "api/ImGuiNET.RangeAccessor-1.html", - "hash": "8FqTYpxQ95rhsbS76BISsg==" + "hash": "nygt8Bin6IvlEkkXH/m9sw==" } }, "is_incremental": false, @@ -5745,7 +5745,7 @@ "output": { ".html": { "relative_path": "api/ImGuiNET.RangePtrAccessor-1.html", - "hash": "n18cPhEh+dTGwgvc95gTHg==" + "hash": "exLNvFfGTe+dzNKy5gqBSg==" } }, "is_incremental": false, @@ -5877,7 +5877,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.FramerateLimit.LimitType.html", - "hash": "FXun7huPlU5bwc0c1VO5ww==" + "hash": "e0ZJkTQyCdescNRBK1fBWg==" } }, "is_incremental": false, @@ -5889,7 +5889,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.FramerateLimit.html", - "hash": "NPzu7/H+L+G0dnDea9plMQ==" + "hash": "y9AAlRgzBnjWrK8dQ9aYSQ==" } }, "is_incremental": false, @@ -5901,7 +5901,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.GLTextureWrap.html", - "hash": "d51VOH6jhDfMJREwfSelOQ==" + "hash": "7hEmv/VIjDUuJHY4wtq/cA==" } }, "is_incremental": false, @@ -5913,7 +5913,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.IImGuiInputHandler.html", - "hash": "3OxR62a8jpIsyiQcKp3AgA==" + "hash": "0tiNLkhgWVCaq+dm4o0RmQ==" } }, "is_incremental": false, @@ -5925,7 +5925,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.IImGuiRenderer.html", - "hash": "+oVKZAsmVbqJp65LRIentQ==" + "hash": "sMjUjCptUaJoDvauEAvDbw==" } }, "is_incremental": false, @@ -5937,7 +5937,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.IRenderer.html", - "hash": "1Z2JKxNCPAVSTWy+vadHQQ==" + "hash": "wp7sNt20yhWkik7gk70wPw==" } }, "is_incremental": false, @@ -5949,7 +5949,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.ImGui_Impl_DX11.html", - "hash": "MfYUB70vNFUnrGPpI40Kug==" + "hash": "aVPqZQj/mCyQ3hknNPKe2A==" } }, "is_incremental": false, @@ -5961,7 +5961,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.ImGui_Impl_OpenGL3.html", - "hash": "Mgdk30JJlxfRoYXsSIm3KQ==" + "hash": "cSAoAI2/3NSvdbe7aXdtcA==" } }, "is_incremental": false, @@ -5973,7 +5973,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.ImGui_Impl_SDL.html", - "hash": "YPMaFnxRdL3gxuhDHZ1iaQ==" + "hash": "uzdnI9NvzNaY3ifi3CGr+g==" } }, "is_incremental": false, @@ -5985,7 +5985,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.ImGui_Input_Impl_Direct.html", - "hash": "airfxAfolgo8xiyCBmNAvg==" + "hash": "Rr8vKcR0bVbZb0aWzlbYUQ==" } }, "is_incremental": false, @@ -5997,7 +5997,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.MemUtil.html", - "hash": "pueUUFLRi1F6Mbz4WwWZ3A==" + "hash": "PBm0e8qYeUb12XnPFJskMA==" } }, "is_incremental": false, @@ -6009,7 +6009,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.RawDX11Scene.BuildUIDelegate.html", - "hash": "ICKlc+4T82u5HTNl3OTzug==" + "hash": "YpsMcyHTL1id2tb/aL6GXw==" } }, "is_incremental": false, @@ -6021,7 +6021,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.RawDX11Scene.NewInputFrameDelegate.html", - "hash": "AzL4lbdQ45jVjM4eX6ERKw==" + "hash": "oqYVkpulyuNEr6uJ0l+/zQ==" } }, "is_incremental": false, @@ -6033,7 +6033,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.RawDX11Scene.NewRenderFrameDelegate.html", - "hash": "WZTZz3KB0uScKzXm6cYIJA==" + "hash": "Dk+w5ZauAw2strH83OvdwA==" } }, "is_incremental": false, @@ -6045,7 +6045,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.RawDX11Scene.html", - "hash": "knR/AE6SOxvtOLFTavThTw==" + "hash": "QXaU+o+xOIRPJva1iax0ag==" } }, "is_incremental": false, @@ -6057,7 +6057,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.RendererFactory.RendererBackend.html", - "hash": "ZWMvrX2Upt5WNOrYRrqvbg==" + "hash": "8PAmkl7wjq0MvRJQzizqSA==" } }, "is_incremental": false, @@ -6069,7 +6069,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.RendererFactory.html", - "hash": "ArEWTJwkE/c1ZJeLOtDfRg==" + "hash": "Ij10amcuiGcAVnIX6GO9hA==" } }, "is_incremental": false, @@ -6081,7 +6081,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.SDLWindowGL.html", - "hash": "JpC0LsgmzMfjyUlhmpS+hw==" + "hash": "sLAIS6evMviCBBIEtSY4bg==" } }, "is_incremental": false, @@ -6093,7 +6093,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.SimpleD3D.html", - "hash": "btouDLN33PJsVm60TK7Slw==" + "hash": "SR1X6DLcjxoP0MOpsJ52tQ==" } }, "is_incremental": false, @@ -6105,7 +6105,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.SimpleImGuiScene.BuildUIDelegate.html", - "hash": "/XZ2OJJWdENASyTlCcbRkA==" + "hash": "IqTI5ue8HrSuliSQqusouQ==" } }, "is_incremental": false, @@ -6117,7 +6117,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.SimpleImGuiScene.html", - "hash": "NkmyD/3yeNVnELNAwi+sng==" + "hash": "6DZXNTk/XPKYIBeiwHZ2Tg==" } }, "is_incremental": false, @@ -6129,7 +6129,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.SimpleOGL3.html", - "hash": "meCvz19oVgTRPetoEEhBJA==" + "hash": "PNCmYt6TxlzP0EyKqveL6g==" } }, "is_incremental": false, @@ -6141,7 +6141,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.SimpleSDLWindow.ProcessEventDelegate.html", - "hash": "wxs3WAShsYr8nBtylJrLSA==" + "hash": "7yPnO9dhKFkd/A4Tey4qkg==" } }, "is_incremental": false, @@ -6153,7 +6153,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.SimpleSDLWindow.html", - "hash": "R9gcw+l+ObRwVW2A3pdrLQ==" + "hash": "/vR5iFxYpcBNQyCeVcxPMQ==" } }, "is_incremental": false, @@ -6165,7 +6165,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.TextureWrap.html", - "hash": "dzTkHk2ViEYMqE+Mi39pGQ==" + "hash": "81W5XShyHj89XAbxa6/quw==" } }, "is_incremental": false, @@ -6177,7 +6177,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.WindowCreateInfo.html", - "hash": "q8z1dgv+TMYItXphOh//BQ==" + "hash": "Bt/BZn465mA03RuZDCGWAg==" } }, "is_incremental": false, @@ -6189,7 +6189,7 @@ "output": { ".html": { "relative_path": "api/ImGuiScene.WindowFactory.html", - "hash": "9BMjefA0Jbb+flCH/TInCw==" + "hash": "w9Y32lsra4oQpL1IGvrY7Q==" } }, "is_incremental": false, @@ -8373,7 +8373,7 @@ "output": { ".html": { "relative_path": "api/toc.html", - "hash": "pW6QCBZrfRRvR3ATnaceTw==" + "hash": "m+A3/bMpVKieQd/jAdAAnA==" } }, "is_incremental": false, @@ -8388,32 +8388,30 @@ "hash": "SfST5AwBnU8oPdlya6ggRg==" } }, - "is_incremental": false, + "is_incremental": true, "version": "" } ], "incremental_info": [ { "status": { - "can_incremental": false, - "details": "Cannot build incrementally because last build info is missing.", + "can_incremental": true, "incrementalPhase": "build", "total_file_count": 0, - "skipped_file_count": 0, - "full_build_reason_code": "NoAvailableBuildCache" + "skipped_file_count": 0 }, "processors": { "ConceptualDocumentProcessor": { - "can_incremental": false, + "can_incremental": true, "incrementalPhase": "build", "total_file_count": 3, - "skipped_file_count": 0 + "skipped_file_count": 2 }, "ManagedReferenceDocumentProcessor": { - "can_incremental": false, + "can_incremental": true, "incrementalPhase": "build", "total_file_count": 695, - "skipped_file_count": 0 + "skipped_file_count": 596 }, "TocDocumentProcessor": { "can_incremental": false, @@ -8426,8 +8424,8 @@ }, { "status": { - "can_incremental": false, - "details": "Cannot support incremental post processing, the reason is: last post processor info is null.", + "can_incremental": true, + "details": "Can support incremental post processing.", "incrementalPhase": "postProcessing", "total_file_count": 0, "skipped_file_count": 0 diff --git a/docs/xrefmap.yml b/docs/xrefmap.yml index 1e3890127..d792d7f1c 100644 --- a/docs/xrefmap.yml +++ b/docs/xrefmap.yml @@ -155,11 +155,11 @@ references: commentId: T:Dalamud.Dalamud fullName: Dalamud.Dalamud nameWithType: Dalamud -- uid: Dalamud.Dalamud.#ctor(Dalamud.DalamudStartInfo,LoggingLevelSwitch,System.Threading.ManualResetEvent) +- uid: Dalamud.Dalamud.#ctor(Dalamud.DalamudStartInfo,Serilog.Core.LoggingLevelSwitch,System.Threading.ManualResetEvent) name: Dalamud(DalamudStartInfo, LoggingLevelSwitch, ManualResetEvent) - href: api/Dalamud.Dalamud.html#Dalamud_Dalamud__ctor_Dalamud_DalamudStartInfo_LoggingLevelSwitch_System_Threading_ManualResetEvent_ - commentId: M:Dalamud.Dalamud.#ctor(Dalamud.DalamudStartInfo,LoggingLevelSwitch,System.Threading.ManualResetEvent) - fullName: Dalamud.Dalamud.Dalamud(Dalamud.DalamudStartInfo, LoggingLevelSwitch, System.Threading.ManualResetEvent) + href: api/Dalamud.Dalamud.html#Dalamud_Dalamud__ctor_Dalamud_DalamudStartInfo_Serilog_Core_LoggingLevelSwitch_System_Threading_ManualResetEvent_ + commentId: M:Dalamud.Dalamud.#ctor(Dalamud.DalamudStartInfo,Serilog.Core.LoggingLevelSwitch,System.Threading.ManualResetEvent) + fullName: Dalamud.Dalamud.Dalamud(Dalamud.DalamudStartInfo, Serilog.Core.LoggingLevelSwitch, System.Threading.ManualResetEvent) nameWithType: Dalamud.Dalamud(DalamudStartInfo, LoggingLevelSwitch, ManualResetEvent) - uid: Dalamud.Dalamud.#ctor* name: Dalamud @@ -299,19 +299,6 @@ references: commentId: T:Dalamud.Data.DataManager fullName: Dalamud.Data.DataManager nameWithType: DataManager -- uid: Dalamud.Data.DataManager.#ctor(Dalamud.ClientLanguage) - name: DataManager(ClientLanguage) - href: api/Dalamud.Data.DataManager.html#Dalamud_Data_DataManager__ctor_Dalamud_ClientLanguage_ - commentId: M:Dalamud.Data.DataManager.#ctor(Dalamud.ClientLanguage) - fullName: Dalamud.Data.DataManager.DataManager(Dalamud.ClientLanguage) - nameWithType: DataManager.DataManager(ClientLanguage) -- uid: Dalamud.Data.DataManager.#ctor* - name: DataManager - href: api/Dalamud.Data.DataManager.html#Dalamud_Data_DataManager__ctor_ - commentId: Overload:Dalamud.Data.DataManager.#ctor - isSpec: "True" - fullName: Dalamud.Data.DataManager.DataManager - nameWithType: DataManager.DataManager - uid: Dalamud.Data.DataManager.ClientOpCodes name: ClientOpCodes href: api/Dalamud.Data.DataManager.html#Dalamud_Data_DataManager_ClientOpCodes @@ -436,19 +423,44 @@ references: isSpec: "True" fullName: Dalamud.Data.DataManager.GetIcon nameWithType: DataManager.GetIcon -- uid: Dalamud.Data.DataManager.Initialize(System.String) - name: Initialize(String) - href: api/Dalamud.Data.DataManager.html#Dalamud_Data_DataManager_Initialize_System_String_ - commentId: M:Dalamud.Data.DataManager.Initialize(System.String) - fullName: Dalamud.Data.DataManager.Initialize(System.String) - nameWithType: DataManager.Initialize(String) -- uid: Dalamud.Data.DataManager.Initialize* - name: Initialize - href: api/Dalamud.Data.DataManager.html#Dalamud_Data_DataManager_Initialize_ - commentId: Overload:Dalamud.Data.DataManager.Initialize +- uid: Dalamud.Data.DataManager.GetImGuiTexture(Lumina.Data.Files.TexFile) + name: GetImGuiTexture(TexFile) + href: api/Dalamud.Data.DataManager.html#Dalamud_Data_DataManager_GetImGuiTexture_Lumina_Data_Files_TexFile_ + commentId: M:Dalamud.Data.DataManager.GetImGuiTexture(Lumina.Data.Files.TexFile) + fullName: Dalamud.Data.DataManager.GetImGuiTexture(Lumina.Data.Files.TexFile) + nameWithType: DataManager.GetImGuiTexture(TexFile) +- uid: Dalamud.Data.DataManager.GetImGuiTexture(System.String) + name: GetImGuiTexture(String) + href: api/Dalamud.Data.DataManager.html#Dalamud_Data_DataManager_GetImGuiTexture_System_String_ + commentId: M:Dalamud.Data.DataManager.GetImGuiTexture(System.String) + fullName: Dalamud.Data.DataManager.GetImGuiTexture(System.String) + nameWithType: DataManager.GetImGuiTexture(String) +- uid: Dalamud.Data.DataManager.GetImGuiTexture* + name: GetImGuiTexture + href: api/Dalamud.Data.DataManager.html#Dalamud_Data_DataManager_GetImGuiTexture_ + commentId: Overload:Dalamud.Data.DataManager.GetImGuiTexture isSpec: "True" - fullName: Dalamud.Data.DataManager.Initialize - nameWithType: DataManager.Initialize + fullName: Dalamud.Data.DataManager.GetImGuiTexture + nameWithType: DataManager.GetImGuiTexture +- uid: Dalamud.Data.DataManager.GetImGuiTextureIcon(Dalamud.ClientLanguage,System.Int32) + name: GetImGuiTextureIcon(ClientLanguage, Int32) + href: api/Dalamud.Data.DataManager.html#Dalamud_Data_DataManager_GetImGuiTextureIcon_Dalamud_ClientLanguage_System_Int32_ + commentId: M:Dalamud.Data.DataManager.GetImGuiTextureIcon(Dalamud.ClientLanguage,System.Int32) + fullName: Dalamud.Data.DataManager.GetImGuiTextureIcon(Dalamud.ClientLanguage, System.Int32) + nameWithType: DataManager.GetImGuiTextureIcon(ClientLanguage, Int32) +- uid: Dalamud.Data.DataManager.GetImGuiTextureIcon(System.String,System.Int32) + name: GetImGuiTextureIcon(String, Int32) + href: api/Dalamud.Data.DataManager.html#Dalamud_Data_DataManager_GetImGuiTextureIcon_System_String_System_Int32_ + commentId: M:Dalamud.Data.DataManager.GetImGuiTextureIcon(System.String,System.Int32) + fullName: Dalamud.Data.DataManager.GetImGuiTextureIcon(System.String, System.Int32) + nameWithType: DataManager.GetImGuiTextureIcon(String, Int32) +- uid: Dalamud.Data.DataManager.GetImGuiTextureIcon* + name: GetImGuiTextureIcon + href: api/Dalamud.Data.DataManager.html#Dalamud_Data_DataManager_GetImGuiTextureIcon_ + commentId: Overload:Dalamud.Data.DataManager.GetImGuiTextureIcon + isSpec: "True" + fullName: Dalamud.Data.DataManager.GetImGuiTextureIcon + nameWithType: DataManager.GetImGuiTextureIcon - uid: Dalamud.Data.DataManager.IsDataReady name: IsDataReady href: api/Dalamud.Data.DataManager.html#Dalamud_Data_DataManager_IsDataReady @@ -462,6 +474,19 @@ references: isSpec: "True" fullName: Dalamud.Data.DataManager.IsDataReady nameWithType: DataManager.IsDataReady +- uid: Dalamud.Data.DataManager.Language + name: Language + href: api/Dalamud.Data.DataManager.html#Dalamud_Data_DataManager_Language + commentId: P:Dalamud.Data.DataManager.Language + fullName: Dalamud.Data.DataManager.Language + nameWithType: DataManager.Language +- uid: Dalamud.Data.DataManager.Language* + name: Language + href: api/Dalamud.Data.DataManager.html#Dalamud_Data_DataManager_Language_ + commentId: Overload:Dalamud.Data.DataManager.Language + isSpec: "True" + fullName: Dalamud.Data.DataManager.Language + nameWithType: DataManager.Language - uid: Dalamud.Data.DataManager.ServerOpCodes name: ServerOpCodes href: api/Dalamud.Data.DataManager.html#Dalamud_Data_DataManager_ServerOpCodes @@ -487,11 +512,11 @@ references: commentId: T:Dalamud.Data.LuminaExtensions.TexFileExtensions fullName: Dalamud.Data.LuminaExtensions.TexFileExtensions nameWithType: TexFileExtensions -- uid: Dalamud.Data.LuminaExtensions.TexFileExtensions.GetRgbaImageData(TexFile) +- uid: Dalamud.Data.LuminaExtensions.TexFileExtensions.GetRgbaImageData(Lumina.Data.Files.TexFile) name: GetRgbaImageData(TexFile) - href: api/Dalamud.Data.LuminaExtensions.TexFileExtensions.html#Dalamud_Data_LuminaExtensions_TexFileExtensions_GetRgbaImageData_TexFile_ - commentId: M:Dalamud.Data.LuminaExtensions.TexFileExtensions.GetRgbaImageData(TexFile) - fullName: Dalamud.Data.LuminaExtensions.TexFileExtensions.GetRgbaImageData(TexFile) + href: api/Dalamud.Data.LuminaExtensions.TexFileExtensions.html#Dalamud_Data_LuminaExtensions_TexFileExtensions_GetRgbaImageData_Lumina_Data_Files_TexFile_ + commentId: M:Dalamud.Data.LuminaExtensions.TexFileExtensions.GetRgbaImageData(Lumina.Data.Files.TexFile) + fullName: Dalamud.Data.LuminaExtensions.TexFileExtensions.GetRgbaImageData(Lumina.Data.Files.TexFile) nameWithType: TexFileExtensions.GetRgbaImageData(TexFile) - uid: Dalamud.Data.LuminaExtensions.TexFileExtensions.GetRgbaImageData* name: GetRgbaImageData @@ -500,521 +525,17 @@ references: isSpec: "True" fullName: Dalamud.Data.LuminaExtensions.TexFileExtensions.GetRgbaImageData nameWithType: TexFileExtensions.GetRgbaImageData -- uid: Dalamud.Data.TransientSheet - name: Dalamud.Data.TransientSheet - href: api/Dalamud.Data.TransientSheet.html - commentId: N:Dalamud.Data.TransientSheet - fullName: Dalamud.Data.TransientSheet - nameWithType: Dalamud.Data.TransientSheet -- uid: Dalamud.Data.TransientSheet.Completion - name: Completion - href: api/Dalamud.Data.TransientSheet.Completion.html - commentId: T:Dalamud.Data.TransientSheet.Completion - fullName: Dalamud.Data.TransientSheet.Completion - nameWithType: Completion -- uid: Dalamud.Data.TransientSheet.Completion.Group - name: Group - href: api/Dalamud.Data.TransientSheet.Completion.html#Dalamud_Data_TransientSheet_Completion_Group - commentId: F:Dalamud.Data.TransientSheet.Completion.Group - fullName: Dalamud.Data.TransientSheet.Completion.Group - nameWithType: Completion.Group -- uid: Dalamud.Data.TransientSheet.Completion.GroupTitle - name: GroupTitle - href: api/Dalamud.Data.TransientSheet.Completion.html#Dalamud_Data_TransientSheet_Completion_GroupTitle - commentId: F:Dalamud.Data.TransientSheet.Completion.GroupTitle - fullName: Dalamud.Data.TransientSheet.Completion.GroupTitle - nameWithType: Completion.GroupTitle -- uid: Dalamud.Data.TransientSheet.Completion.Key - name: Key - href: api/Dalamud.Data.TransientSheet.Completion.html#Dalamud_Data_TransientSheet_Completion_Key - commentId: F:Dalamud.Data.TransientSheet.Completion.Key - fullName: Dalamud.Data.TransientSheet.Completion.Key - nameWithType: Completion.Key -- uid: Dalamud.Data.TransientSheet.Completion.LookupTable - name: LookupTable - href: api/Dalamud.Data.TransientSheet.Completion.html#Dalamud_Data_TransientSheet_Completion_LookupTable - commentId: F:Dalamud.Data.TransientSheet.Completion.LookupTable - fullName: Dalamud.Data.TransientSheet.Completion.LookupTable - nameWithType: Completion.LookupTable -- uid: Dalamud.Data.TransientSheet.Completion.PopulateData(RowParser,GameData,Language) - name: PopulateData(RowParser, GameData, Language) - href: api/Dalamud.Data.TransientSheet.Completion.html#Dalamud_Data_TransientSheet_Completion_PopulateData_RowParser_GameData_Language_ - commentId: M:Dalamud.Data.TransientSheet.Completion.PopulateData(RowParser,GameData,Language) - fullName: Dalamud.Data.TransientSheet.Completion.PopulateData(RowParser, GameData, Language) - nameWithType: Completion.PopulateData(RowParser, GameData, Language) -- uid: Dalamud.Data.TransientSheet.Completion.PopulateData* - name: PopulateData - href: api/Dalamud.Data.TransientSheet.Completion.html#Dalamud_Data_TransientSheet_Completion_PopulateData_ - commentId: Overload:Dalamud.Data.TransientSheet.Completion.PopulateData - isSpec: "True" - fullName: Dalamud.Data.TransientSheet.Completion.PopulateData - nameWithType: Completion.PopulateData -- uid: Dalamud.Data.TransientSheet.Completion.RowId - name: RowId - href: api/Dalamud.Data.TransientSheet.Completion.html#Dalamud_Data_TransientSheet_Completion_RowId - commentId: P:Dalamud.Data.TransientSheet.Completion.RowId - fullName: Dalamud.Data.TransientSheet.Completion.RowId - nameWithType: Completion.RowId -- uid: Dalamud.Data.TransientSheet.Completion.RowId* - name: RowId - href: api/Dalamud.Data.TransientSheet.Completion.html#Dalamud_Data_TransientSheet_Completion_RowId_ - commentId: Overload:Dalamud.Data.TransientSheet.Completion.RowId - isSpec: "True" - fullName: Dalamud.Data.TransientSheet.Completion.RowId - nameWithType: Completion.RowId -- uid: Dalamud.Data.TransientSheet.Completion.SubRowId - name: SubRowId - href: api/Dalamud.Data.TransientSheet.Completion.html#Dalamud_Data_TransientSheet_Completion_SubRowId - commentId: P:Dalamud.Data.TransientSheet.Completion.SubRowId - fullName: Dalamud.Data.TransientSheet.Completion.SubRowId - nameWithType: Completion.SubRowId -- uid: Dalamud.Data.TransientSheet.Completion.SubRowId* - name: SubRowId - href: api/Dalamud.Data.TransientSheet.Completion.html#Dalamud_Data_TransientSheet_Completion_SubRowId_ - commentId: Overload:Dalamud.Data.TransientSheet.Completion.SubRowId - isSpec: "True" - fullName: Dalamud.Data.TransientSheet.Completion.SubRowId - nameWithType: Completion.SubRowId -- uid: Dalamud.Data.TransientSheet.Completion.Text - name: Text - href: api/Dalamud.Data.TransientSheet.Completion.html#Dalamud_Data_TransientSheet_Completion_Text - commentId: F:Dalamud.Data.TransientSheet.Completion.Text - fullName: Dalamud.Data.TransientSheet.Completion.Text - nameWithType: Completion.Text -- uid: Dalamud.Data.TransientSheet.PetMirage - name: PetMirage - href: api/Dalamud.Data.TransientSheet.PetMirage.html - commentId: T:Dalamud.Data.TransientSheet.PetMirage - fullName: Dalamud.Data.TransientSheet.PetMirage - nameWithType: PetMirage -- uid: Dalamud.Data.TransientSheet.PetMirage.Name - name: Name - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_Name - commentId: F:Dalamud.Data.TransientSheet.PetMirage.Name - fullName: Dalamud.Data.TransientSheet.PetMirage.Name - nameWithType: PetMirage.Name -- uid: Dalamud.Data.TransientSheet.PetMirage.PopulateData(RowParser,GameData,Language) - name: PopulateData(RowParser, GameData, Language) - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_PopulateData_RowParser_GameData_Language_ - commentId: M:Dalamud.Data.TransientSheet.PetMirage.PopulateData(RowParser,GameData,Language) - fullName: Dalamud.Data.TransientSheet.PetMirage.PopulateData(RowParser, GameData, Language) - nameWithType: PetMirage.PopulateData(RowParser, GameData, Language) -- uid: Dalamud.Data.TransientSheet.PetMirage.PopulateData* - name: PopulateData - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_PopulateData_ - commentId: Overload:Dalamud.Data.TransientSheet.PetMirage.PopulateData - isSpec: "True" - fullName: Dalamud.Data.TransientSheet.PetMirage.PopulateData - nameWithType: PetMirage.PopulateData -- uid: Dalamud.Data.TransientSheet.PetMirage.RowId - name: RowId - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_RowId - commentId: P:Dalamud.Data.TransientSheet.PetMirage.RowId - fullName: Dalamud.Data.TransientSheet.PetMirage.RowId - nameWithType: PetMirage.RowId -- uid: Dalamud.Data.TransientSheet.PetMirage.RowId* - name: RowId - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_RowId_ - commentId: Overload:Dalamud.Data.TransientSheet.PetMirage.RowId - isSpec: "True" - fullName: Dalamud.Data.TransientSheet.PetMirage.RowId - nameWithType: PetMirage.RowId -- uid: Dalamud.Data.TransientSheet.PetMirage.SubRowId - name: SubRowId - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_SubRowId - commentId: P:Dalamud.Data.TransientSheet.PetMirage.SubRowId - fullName: Dalamud.Data.TransientSheet.PetMirage.SubRowId - nameWithType: PetMirage.SubRowId -- uid: Dalamud.Data.TransientSheet.PetMirage.SubRowId* - name: SubRowId - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_SubRowId_ - commentId: Overload:Dalamud.Data.TransientSheet.PetMirage.SubRowId - isSpec: "True" - fullName: Dalamud.Data.TransientSheet.PetMirage.SubRowId - nameWithType: PetMirage.SubRowId -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown10 - name: unknown10 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown10 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown10 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown10 - nameWithType: PetMirage.unknown10 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown12 - name: unknown12 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown12 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown12 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown12 - nameWithType: PetMirage.unknown12 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown14 - name: unknown14 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown14 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown14 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown14 - nameWithType: PetMirage.unknown14 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown16 - name: unknown16 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown16 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown16 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown16 - nameWithType: PetMirage.unknown16 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown18 - name: unknown18 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown18 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown18 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown18 - nameWithType: PetMirage.unknown18 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown1a - name: unknown1a - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown1a - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown1a - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown1a - nameWithType: PetMirage.unknown1a -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown1c - name: unknown1c - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown1c - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown1c - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown1c - nameWithType: PetMirage.unknown1c -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown1e - name: unknown1e - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown1e - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown1e - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown1e - nameWithType: PetMirage.unknown1e -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown20 - name: unknown20 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown20 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown20 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown20 - nameWithType: PetMirage.unknown20 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown22 - name: unknown22 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown22 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown22 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown22 - nameWithType: PetMirage.unknown22 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown24 - name: unknown24 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown24 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown24 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown24 - nameWithType: PetMirage.unknown24 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown26 - name: unknown26 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown26 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown26 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown26 - nameWithType: PetMirage.unknown26 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown28 - name: unknown28 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown28 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown28 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown28 - nameWithType: PetMirage.unknown28 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown2a - name: unknown2a - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown2a - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown2a - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown2a - nameWithType: PetMirage.unknown2a -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown2c - name: unknown2c - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown2c - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown2c - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown2c - nameWithType: PetMirage.unknown2c -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown2e - name: unknown2e - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown2e - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown2e - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown2e - nameWithType: PetMirage.unknown2e -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown30 - name: unknown30 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown30 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown30 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown30 - nameWithType: PetMirage.unknown30 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown32 - name: unknown32 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown32 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown32 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown32 - nameWithType: PetMirage.unknown32 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown34 - name: unknown34 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown34 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown34 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown34 - nameWithType: PetMirage.unknown34 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown36 - name: unknown36 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown36 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown36 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown36 - nameWithType: PetMirage.unknown36 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown38 - name: unknown38 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown38 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown38 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown38 - nameWithType: PetMirage.unknown38 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown3a - name: unknown3a - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown3a - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown3a - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown3a - nameWithType: PetMirage.unknown3a -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown3c - name: unknown3c - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown3c - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown3c - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown3c - nameWithType: PetMirage.unknown3c -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown3e - name: unknown3e - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown3e - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown3e - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown3e - nameWithType: PetMirage.unknown3e -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown4 - name: unknown4 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown4 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown4 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown4 - nameWithType: PetMirage.unknown4 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown40 - name: unknown40 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown40 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown40 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown40 - nameWithType: PetMirage.unknown40 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown42 - name: unknown42 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown42 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown42 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown42 - nameWithType: PetMirage.unknown42 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown44 - name: unknown44 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown44 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown44 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown44 - nameWithType: PetMirage.unknown44 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown46 - name: unknown46 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown46 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown46 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown46 - nameWithType: PetMirage.unknown46 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown48 - name: unknown48 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown48 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown48 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown48 - nameWithType: PetMirage.unknown48 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown4a - name: unknown4a - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown4a - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown4a - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown4a - nameWithType: PetMirage.unknown4a -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown4c - name: unknown4c - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown4c - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown4c - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown4c - nameWithType: PetMirage.unknown4c -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown4e - name: unknown4e - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown4e - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown4e - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown4e - nameWithType: PetMirage.unknown4e -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown50 - name: unknown50 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown50 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown50 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown50 - nameWithType: PetMirage.unknown50 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown52 - name: unknown52 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown52 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown52 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown52 - nameWithType: PetMirage.unknown52 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown54 - name: unknown54 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown54 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown54 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown54 - nameWithType: PetMirage.unknown54 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown56 - name: unknown56 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown56 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown56 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown56 - nameWithType: PetMirage.unknown56 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown58 - name: unknown58 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown58 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown58 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown58 - nameWithType: PetMirage.unknown58 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown5a - name: unknown5a - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown5a - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown5a - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown5a - nameWithType: PetMirage.unknown5a -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown5c - name: unknown5c - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown5c - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown5c - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown5c - nameWithType: PetMirage.unknown5c -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown5e - name: unknown5e - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown5e - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown5e - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown5e - nameWithType: PetMirage.unknown5e -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown6 - name: unknown6 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown6 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown6 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown6 - nameWithType: PetMirage.unknown6 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown60 - name: unknown60 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown60 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown60 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown60 - nameWithType: PetMirage.unknown60 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown62 - name: unknown62 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown62 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown62 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown62 - nameWithType: PetMirage.unknown62 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown64 - name: unknown64 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown64 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown64 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown64 - nameWithType: PetMirage.unknown64 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown66 - name: unknown66 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown66 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown66 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown66 - nameWithType: PetMirage.unknown66 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown68 - name: unknown68 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown68 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown68 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown68 - nameWithType: PetMirage.unknown68 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown6a - name: unknown6a - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown6a - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown6a - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown6a - nameWithType: PetMirage.unknown6a -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown6c - name: unknown6c - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown6c - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown6c - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown6c - nameWithType: PetMirage.unknown6c -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown6e - name: unknown6e - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown6e - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown6e - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown6e - nameWithType: PetMirage.unknown6e -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown70 - name: unknown70 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown70 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown70 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown70 - nameWithType: PetMirage.unknown70 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown72 - name: unknown72 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown72 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown72 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown72 - nameWithType: PetMirage.unknown72 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown74 - name: unknown74 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown74 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown74 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown74 - nameWithType: PetMirage.unknown74 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown76 - name: unknown76 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown76 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown76 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown76 - nameWithType: PetMirage.unknown76 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown78 - name: unknown78 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown78 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown78 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown78 - nameWithType: PetMirage.unknown78 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown7a - name: unknown7a - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown7a - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown7a - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown7a - nameWithType: PetMirage.unknown7a -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown7c - name: unknown7c - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown7c - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown7c - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown7c - nameWithType: PetMirage.unknown7c -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown8 - name: unknown8 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown8 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown8 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown8 - nameWithType: PetMirage.unknown8 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknown80 - name: unknown80 - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknown80 - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknown80 - fullName: Dalamud.Data.TransientSheet.PetMirage.unknown80 - nameWithType: PetMirage.unknown80 -- uid: Dalamud.Data.TransientSheet.PetMirage.unknowna - name: unknowna - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknowna - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknowna - fullName: Dalamud.Data.TransientSheet.PetMirage.unknowna - nameWithType: PetMirage.unknowna -- uid: Dalamud.Data.TransientSheet.PetMirage.unknownc - name: unknownc - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknownc - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknownc - fullName: Dalamud.Data.TransientSheet.PetMirage.unknownc - nameWithType: PetMirage.unknownc -- uid: Dalamud.Data.TransientSheet.PetMirage.unknowne - name: unknowne - href: api/Dalamud.Data.TransientSheet.PetMirage.html#Dalamud_Data_TransientSheet_PetMirage_unknowne - commentId: F:Dalamud.Data.TransientSheet.PetMirage.unknowne - fullName: Dalamud.Data.TransientSheet.PetMirage.unknowne - nameWithType: PetMirage.unknowne - uid: Dalamud.EntryPoint name: EntryPoint href: api/Dalamud.EntryPoint.html commentId: T:Dalamud.EntryPoint fullName: Dalamud.EntryPoint nameWithType: EntryPoint -- uid: Dalamud.EntryPoint.#ctor(RemoteHooking.IContext,Dalamud.DalamudStartInfo) +- uid: Dalamud.EntryPoint.#ctor(EasyHook.RemoteHooking.IContext,Dalamud.DalamudStartInfo) name: EntryPoint(RemoteHooking.IContext, DalamudStartInfo) - href: api/Dalamud.EntryPoint.html#Dalamud_EntryPoint__ctor_RemoteHooking_IContext_Dalamud_DalamudStartInfo_ - commentId: M:Dalamud.EntryPoint.#ctor(RemoteHooking.IContext,Dalamud.DalamudStartInfo) - fullName: Dalamud.EntryPoint.EntryPoint(RemoteHooking.IContext, Dalamud.DalamudStartInfo) + href: api/Dalamud.EntryPoint.html#Dalamud_EntryPoint__ctor_EasyHook_RemoteHooking_IContext_Dalamud_DalamudStartInfo_ + commentId: M:Dalamud.EntryPoint.#ctor(EasyHook.RemoteHooking.IContext,Dalamud.DalamudStartInfo) + fullName: Dalamud.EntryPoint.EntryPoint(EasyHook.RemoteHooking.IContext, Dalamud.DalamudStartInfo) nameWithType: EntryPoint.EntryPoint(RemoteHooking.IContext, DalamudStartInfo) - uid: Dalamud.EntryPoint.#ctor* name: EntryPoint @@ -1023,11 +544,11 @@ references: isSpec: "True" fullName: Dalamud.EntryPoint.EntryPoint nameWithType: EntryPoint.EntryPoint -- uid: Dalamud.EntryPoint.Run(RemoteHooking.IContext,Dalamud.DalamudStartInfo) +- uid: Dalamud.EntryPoint.Run(EasyHook.RemoteHooking.IContext,Dalamud.DalamudStartInfo) name: Run(RemoteHooking.IContext, DalamudStartInfo) - href: api/Dalamud.EntryPoint.html#Dalamud_EntryPoint_Run_RemoteHooking_IContext_Dalamud_DalamudStartInfo_ - commentId: M:Dalamud.EntryPoint.Run(RemoteHooking.IContext,Dalamud.DalamudStartInfo) - fullName: Dalamud.EntryPoint.Run(RemoteHooking.IContext, Dalamud.DalamudStartInfo) + href: api/Dalamud.EntryPoint.html#Dalamud_EntryPoint_Run_EasyHook_RemoteHooking_IContext_Dalamud_DalamudStartInfo_ + commentId: M:Dalamud.EntryPoint.Run(EasyHook.RemoteHooking.IContext,Dalamud.DalamudStartInfo) + fullName: Dalamud.EntryPoint.Run(EasyHook.RemoteHooking.IContext, Dalamud.DalamudStartInfo) nameWithType: EntryPoint.Run(RemoteHooking.IContext, DalamudStartInfo) - uid: Dalamud.EntryPoint.Run* name: Run @@ -1540,14 +1061,14 @@ references: fullName: Dalamud.Game.ClientState.Actors.Position3 nameWithType: Position3 - uid: Dalamud.Game.ClientState.Actors.Position3.op_Implicit(Dalamud.Game.ClientState.Actors.Position3)~SharpDX.Vector3 - name: Implicit(Position3 to SharpDX.Vector3) + name: Implicit(Position3 to Vector3) href: api/Dalamud.Game.ClientState.Actors.Position3.html#Dalamud_Game_ClientState_Actors_Position3_op_Implicit_Dalamud_Game_ClientState_Actors_Position3__SharpDX_Vector3 commentId: M:Dalamud.Game.ClientState.Actors.Position3.op_Implicit(Dalamud.Game.ClientState.Actors.Position3)~SharpDX.Vector3 - name.vb: Widening(Position3 to SharpDX.Vector3) + name.vb: Widening(Position3 to Vector3) fullName: Dalamud.Game.ClientState.Actors.Position3.Implicit(Dalamud.Game.ClientState.Actors.Position3 to SharpDX.Vector3) fullName.vb: Dalamud.Game.ClientState.Actors.Position3.Widening(Dalamud.Game.ClientState.Actors.Position3 to SharpDX.Vector3) - nameWithType: Position3.Implicit(Position3 to SharpDX.Vector3) - nameWithType.vb: Position3.Widening(Position3 to SharpDX.Vector3) + nameWithType: Position3.Implicit(Position3 to Vector3) + nameWithType.vb: Position3.Widening(Position3 to Vector3) - uid: Dalamud.Game.ClientState.Actors.Position3.op_Implicit(Dalamud.Game.ClientState.Actors.Position3)~System.Numerics.Vector3 name: Implicit(Position3 to Vector3) href: api/Dalamud.Game.ClientState.Actors.Position3.html#Dalamud_Game_ClientState_Actors_Position3_op_Implicit_Dalamud_Game_ClientState_Actors_Position3__System_Numerics_Vector3 @@ -1722,6 +1243,12 @@ references: commentId: F:Dalamud.Game.ClientState.Actors.TargetOffsets.PreviousTarget fullName: Dalamud.Game.ClientState.Actors.TargetOffsets.PreviousTarget nameWithType: TargetOffsets.PreviousTarget +- uid: Dalamud.Game.ClientState.Actors.TargetOffsets.SoftTarget + name: SoftTarget + href: api/Dalamud.Game.ClientState.Actors.TargetOffsets.html#Dalamud_Game_ClientState_Actors_TargetOffsets_SoftTarget + commentId: F:Dalamud.Game.ClientState.Actors.TargetOffsets.SoftTarget + fullName: Dalamud.Game.ClientState.Actors.TargetOffsets.SoftTarget + nameWithType: TargetOffsets.SoftTarget - uid: Dalamud.Game.ClientState.Actors.Targets name: Targets href: api/Dalamud.Game.ClientState.Actors.Targets.html @@ -1844,6 +1371,19 @@ references: isSpec: "True" fullName: Dalamud.Game.ClientState.Actors.Targets.SetFocusTarget nameWithType: Targets.SetFocusTarget +- uid: Dalamud.Game.ClientState.Actors.Targets.SoftTarget + name: SoftTarget + href: api/Dalamud.Game.ClientState.Actors.Targets.html#Dalamud_Game_ClientState_Actors_Targets_SoftTarget + commentId: P:Dalamud.Game.ClientState.Actors.Targets.SoftTarget + fullName: Dalamud.Game.ClientState.Actors.Targets.SoftTarget + nameWithType: Targets.SoftTarget +- uid: Dalamud.Game.ClientState.Actors.Targets.SoftTarget* + name: SoftTarget + href: api/Dalamud.Game.ClientState.Actors.Targets.html#Dalamud_Game_ClientState_Actors_Targets_SoftTarget_ + commentId: Overload:Dalamud.Game.ClientState.Actors.Targets.SoftTarget + isSpec: "True" + fullName: Dalamud.Game.ClientState.Actors.Targets.SoftTarget + nameWithType: Targets.SoftTarget - uid: Dalamud.Game.ClientState.Actors.Types name: Dalamud.Game.ClientState.Actors.Types href: api/Dalamud.Game.ClientState.Actors.Types.html @@ -1882,24 +1422,38 @@ references: isSpec: "True" fullName: Dalamud.Game.ClientState.Actors.Types.Actor.ActorId nameWithType: Actor.ActorId -- uid: Dalamud.Game.ClientState.Actors.Types.Actor.actorStruct - name: actorStruct - href: api/Dalamud.Game.ClientState.Actors.Types.Actor.html#Dalamud_Game_ClientState_Actors_Types_Actor_actorStruct - commentId: F:Dalamud.Game.ClientState.Actors.Types.Actor.actorStruct - fullName: Dalamud.Game.ClientState.Actors.Types.Actor.actorStruct - nameWithType: Actor.actorStruct - uid: Dalamud.Game.ClientState.Actors.Types.Actor.Address name: Address href: api/Dalamud.Game.ClientState.Actors.Types.Actor.html#Dalamud_Game_ClientState_Actors_Types_Actor_Address commentId: F:Dalamud.Game.ClientState.Actors.Types.Actor.Address fullName: Dalamud.Game.ClientState.Actors.Types.Actor.Address nameWithType: Actor.Address -- uid: Dalamud.Game.ClientState.Actors.Types.Actor.dalamud - name: dalamud - href: api/Dalamud.Game.ClientState.Actors.Types.Actor.html#Dalamud_Game_ClientState_Actors_Types_Actor_dalamud - commentId: F:Dalamud.Game.ClientState.Actors.Types.Actor.dalamud - fullName: Dalamud.Game.ClientState.Actors.Types.Actor.dalamud - nameWithType: Actor.dalamud +- uid: Dalamud.Game.ClientState.Actors.Types.Actor.Dalamud + name: Dalamud + href: api/Dalamud.Game.ClientState.Actors.Types.Actor.html#Dalamud_Game_ClientState_Actors_Types_Actor_Dalamud + commentId: P:Dalamud.Game.ClientState.Actors.Types.Actor.Dalamud + fullName: Dalamud.Game.ClientState.Actors.Types.Actor.Dalamud + nameWithType: Actor.Dalamud +- uid: Dalamud.Game.ClientState.Actors.Types.Actor.Dalamud* + name: Dalamud + href: api/Dalamud.Game.ClientState.Actors.Types.Actor.html#Dalamud_Game_ClientState_Actors_Types_Actor_Dalamud_ + commentId: Overload:Dalamud.Game.ClientState.Actors.Types.Actor.Dalamud + isSpec: "True" + fullName: Dalamud.Game.ClientState.Actors.Types.Actor.Dalamud + nameWithType: Actor.Dalamud +- uid: Dalamud.Game.ClientState.Actors.Types.Actor.HitboxRadius + name: HitboxRadius + href: api/Dalamud.Game.ClientState.Actors.Types.Actor.html#Dalamud_Game_ClientState_Actors_Types_Actor_HitboxRadius + commentId: P:Dalamud.Game.ClientState.Actors.Types.Actor.HitboxRadius + fullName: Dalamud.Game.ClientState.Actors.Types.Actor.HitboxRadius + nameWithType: Actor.HitboxRadius +- uid: Dalamud.Game.ClientState.Actors.Types.Actor.HitboxRadius* + name: HitboxRadius + href: api/Dalamud.Game.ClientState.Actors.Types.Actor.html#Dalamud_Game_ClientState_Actors_Types_Actor_HitboxRadius_ + commentId: Overload:Dalamud.Game.ClientState.Actors.Types.Actor.HitboxRadius + isSpec: "True" + fullName: Dalamud.Game.ClientState.Actors.Types.Actor.HitboxRadius + nameWithType: Actor.HitboxRadius - uid: Dalamud.Game.ClientState.Actors.Types.Actor.Name name: Name href: api/Dalamud.Game.ClientState.Actors.Types.Actor.html#Dalamud_Game_ClientState_Actors_Types_Actor_Name @@ -3467,6 +3021,24 @@ references: commentId: F:Dalamud.Game.ClientState.Structs.Actor.ClassJob fullName: Dalamud.Game.ClientState.Structs.Actor.ClassJob nameWithType: Actor.ClassJob +- uid: Dalamud.Game.ClientState.Structs.Actor.CurrentCastSpellActionId + name: CurrentCastSpellActionId + href: api/Dalamud.Game.ClientState.Structs.Actor.html#Dalamud_Game_ClientState_Structs_Actor_CurrentCastSpellActionId + commentId: F:Dalamud.Game.ClientState.Structs.Actor.CurrentCastSpellActionId + fullName: Dalamud.Game.ClientState.Structs.Actor.CurrentCastSpellActionId + nameWithType: Actor.CurrentCastSpellActionId +- uid: Dalamud.Game.ClientState.Structs.Actor.CurrentCastTargetActorId + name: CurrentCastTargetActorId + href: api/Dalamud.Game.ClientState.Structs.Actor.html#Dalamud_Game_ClientState_Structs_Actor_CurrentCastTargetActorId + commentId: F:Dalamud.Game.ClientState.Structs.Actor.CurrentCastTargetActorId + fullName: Dalamud.Game.ClientState.Structs.Actor.CurrentCastTargetActorId + nameWithType: Actor.CurrentCastTargetActorId +- uid: Dalamud.Game.ClientState.Structs.Actor.CurrentCastTime + name: CurrentCastTime + href: api/Dalamud.Game.ClientState.Structs.Actor.html#Dalamud_Game_ClientState_Structs_Actor_CurrentCastTime + commentId: F:Dalamud.Game.ClientState.Structs.Actor.CurrentCastTime + fullName: Dalamud.Game.ClientState.Structs.Actor.CurrentCastTime + nameWithType: Actor.CurrentCastTime - uid: Dalamud.Game.ClientState.Structs.Actor.CurrentCp name: CurrentCp href: api/Dalamud.Game.ClientState.Structs.Actor.html#Dalamud_Game_ClientState_Structs_Actor_CurrentCp @@ -3509,12 +3081,30 @@ references: commentId: F:Dalamud.Game.ClientState.Structs.Actor.DataId fullName: Dalamud.Game.ClientState.Structs.Actor.DataId nameWithType: Actor.DataId +- uid: Dalamud.Game.ClientState.Structs.Actor.HitboxRadius + name: HitboxRadius + href: api/Dalamud.Game.ClientState.Structs.Actor.html#Dalamud_Game_ClientState_Structs_Actor_HitboxRadius + commentId: F:Dalamud.Game.ClientState.Structs.Actor.HitboxRadius + fullName: Dalamud.Game.ClientState.Structs.Actor.HitboxRadius + nameWithType: Actor.HitboxRadius - uid: Dalamud.Game.ClientState.Structs.Actor.HomeWorld name: HomeWorld href: api/Dalamud.Game.ClientState.Structs.Actor.html#Dalamud_Game_ClientState_Structs_Actor_HomeWorld commentId: F:Dalamud.Game.ClientState.Structs.Actor.HomeWorld fullName: Dalamud.Game.ClientState.Structs.Actor.HomeWorld nameWithType: Actor.HomeWorld +- uid: Dalamud.Game.ClientState.Structs.Actor.IsCasting + name: IsCasting + href: api/Dalamud.Game.ClientState.Structs.Actor.html#Dalamud_Game_ClientState_Structs_Actor_IsCasting + commentId: F:Dalamud.Game.ClientState.Structs.Actor.IsCasting + fullName: Dalamud.Game.ClientState.Structs.Actor.IsCasting + nameWithType: Actor.IsCasting +- uid: Dalamud.Game.ClientState.Structs.Actor.IsCasting2 + name: IsCasting2 + href: api/Dalamud.Game.ClientState.Structs.Actor.html#Dalamud_Game_ClientState_Structs_Actor_IsCasting2 + commentId: F:Dalamud.Game.ClientState.Structs.Actor.IsCasting2 + fullName: Dalamud.Game.ClientState.Structs.Actor.IsCasting2 + nameWithType: Actor.IsCasting2 - uid: Dalamud.Game.ClientState.Structs.Actor.IsFriendly name: IsFriendly href: api/Dalamud.Game.ClientState.Structs.Actor.html#Dalamud_Game_ClientState_Structs_Actor_IsFriendly @@ -3605,6 +3195,12 @@ references: commentId: F:Dalamud.Game.ClientState.Structs.Actor.SubKind fullName: Dalamud.Game.ClientState.Structs.Actor.SubKind nameWithType: Actor.SubKind +- uid: Dalamud.Game.ClientState.Structs.Actor.TotalCastTime + name: TotalCastTime + href: api/Dalamud.Game.ClientState.Structs.Actor.html#Dalamud_Game_ClientState_Structs_Actor_TotalCastTime + commentId: F:Dalamud.Game.ClientState.Structs.Actor.TotalCastTime + fullName: Dalamud.Game.ClientState.Structs.Actor.TotalCastTime + nameWithType: Actor.TotalCastTime - uid: Dalamud.Game.ClientState.Structs.Actor.UIStatusEffects name: UIStatusEffects href: api/Dalamud.Game.ClientState.Structs.Actor.html#Dalamud_Game_ClientState_Structs_Actor_UIStatusEffects @@ -3653,6 +3249,24 @@ references: commentId: F:Dalamud.Game.ClientState.Structs.ActorOffsets.CompanyTag fullName: Dalamud.Game.ClientState.Structs.ActorOffsets.CompanyTag nameWithType: ActorOffsets.CompanyTag +- uid: Dalamud.Game.ClientState.Structs.ActorOffsets.CurrentCastSpellActionId + name: CurrentCastSpellActionId + href: api/Dalamud.Game.ClientState.Structs.ActorOffsets.html#Dalamud_Game_ClientState_Structs_ActorOffsets_CurrentCastSpellActionId + commentId: F:Dalamud.Game.ClientState.Structs.ActorOffsets.CurrentCastSpellActionId + fullName: Dalamud.Game.ClientState.Structs.ActorOffsets.CurrentCastSpellActionId + nameWithType: ActorOffsets.CurrentCastSpellActionId +- uid: Dalamud.Game.ClientState.Structs.ActorOffsets.CurrentCastTargetActorId + name: CurrentCastTargetActorId + href: api/Dalamud.Game.ClientState.Structs.ActorOffsets.html#Dalamud_Game_ClientState_Structs_ActorOffsets_CurrentCastTargetActorId + commentId: F:Dalamud.Game.ClientState.Structs.ActorOffsets.CurrentCastTargetActorId + fullName: Dalamud.Game.ClientState.Structs.ActorOffsets.CurrentCastTargetActorId + nameWithType: ActorOffsets.CurrentCastTargetActorId +- uid: Dalamud.Game.ClientState.Structs.ActorOffsets.CurrentCastTime + name: CurrentCastTime + href: api/Dalamud.Game.ClientState.Structs.ActorOffsets.html#Dalamud_Game_ClientState_Structs_ActorOffsets_CurrentCastTime + commentId: F:Dalamud.Game.ClientState.Structs.ActorOffsets.CurrentCastTime + fullName: Dalamud.Game.ClientState.Structs.ActorOffsets.CurrentCastTime + nameWithType: ActorOffsets.CurrentCastTime - uid: Dalamud.Game.ClientState.Structs.ActorOffsets.CurrentCp name: CurrentCp href: api/Dalamud.Game.ClientState.Structs.ActorOffsets.html#Dalamud_Game_ClientState_Structs_ActorOffsets_CurrentCp @@ -3695,12 +3309,30 @@ references: commentId: F:Dalamud.Game.ClientState.Structs.ActorOffsets.DataId fullName: Dalamud.Game.ClientState.Structs.ActorOffsets.DataId nameWithType: ActorOffsets.DataId +- uid: Dalamud.Game.ClientState.Structs.ActorOffsets.HitboxRadius + name: HitboxRadius + href: api/Dalamud.Game.ClientState.Structs.ActorOffsets.html#Dalamud_Game_ClientState_Structs_ActorOffsets_HitboxRadius + commentId: F:Dalamud.Game.ClientState.Structs.ActorOffsets.HitboxRadius + fullName: Dalamud.Game.ClientState.Structs.ActorOffsets.HitboxRadius + nameWithType: ActorOffsets.HitboxRadius - uid: Dalamud.Game.ClientState.Structs.ActorOffsets.HomeWorld name: HomeWorld href: api/Dalamud.Game.ClientState.Structs.ActorOffsets.html#Dalamud_Game_ClientState_Structs_ActorOffsets_HomeWorld commentId: F:Dalamud.Game.ClientState.Structs.ActorOffsets.HomeWorld fullName: Dalamud.Game.ClientState.Structs.ActorOffsets.HomeWorld nameWithType: ActorOffsets.HomeWorld +- uid: Dalamud.Game.ClientState.Structs.ActorOffsets.IsCasting + name: IsCasting + href: api/Dalamud.Game.ClientState.Structs.ActorOffsets.html#Dalamud_Game_ClientState_Structs_ActorOffsets_IsCasting + commentId: F:Dalamud.Game.ClientState.Structs.ActorOffsets.IsCasting + fullName: Dalamud.Game.ClientState.Structs.ActorOffsets.IsCasting + nameWithType: ActorOffsets.IsCasting +- uid: Dalamud.Game.ClientState.Structs.ActorOffsets.IsCasting2 + name: IsCasting2 + href: api/Dalamud.Game.ClientState.Structs.ActorOffsets.html#Dalamud_Game_ClientState_Structs_ActorOffsets_IsCasting2 + commentId: F:Dalamud.Game.ClientState.Structs.ActorOffsets.IsCasting2 + fullName: Dalamud.Game.ClientState.Structs.ActorOffsets.IsCasting2 + nameWithType: ActorOffsets.IsCasting2 - uid: Dalamud.Game.ClientState.Structs.ActorOffsets.IsFriendly name: IsFriendly href: api/Dalamud.Game.ClientState.Structs.ActorOffsets.html#Dalamud_Game_ClientState_Structs_ActorOffsets_IsFriendly @@ -3791,6 +3423,12 @@ references: commentId: F:Dalamud.Game.ClientState.Structs.ActorOffsets.SubKind fullName: Dalamud.Game.ClientState.Structs.ActorOffsets.SubKind nameWithType: ActorOffsets.SubKind +- uid: Dalamud.Game.ClientState.Structs.ActorOffsets.TotalCastTime + name: TotalCastTime + href: api/Dalamud.Game.ClientState.Structs.ActorOffsets.html#Dalamud_Game_ClientState_Structs_ActorOffsets_TotalCastTime + commentId: F:Dalamud.Game.ClientState.Structs.ActorOffsets.TotalCastTime + fullName: Dalamud.Game.ClientState.Structs.ActorOffsets.TotalCastTime + nameWithType: ActorOffsets.TotalCastTime - uid: Dalamud.Game.ClientState.Structs.ActorOffsets.UIStatusEffects name: UIStatusEffects href: api/Dalamud.Game.ClientState.Structs.ActorOffsets.html#Dalamud_Game_ClientState_Structs_ActorOffsets_UIStatusEffects @@ -5458,12 +5096,24 @@ references: commentId: E:Dalamud.Game.Internal.Gui.ChatGui.OnChatMessage fullName: Dalamud.Game.Internal.Gui.ChatGui.OnChatMessage nameWithType: ChatGui.OnChatMessage +- uid: Dalamud.Game.Internal.Gui.ChatGui.OnChatMessageHandled + name: OnChatMessageHandled + href: api/Dalamud.Game.Internal.Gui.ChatGui.html#Dalamud_Game_Internal_Gui_ChatGui_OnChatMessageHandled + commentId: E:Dalamud.Game.Internal.Gui.ChatGui.OnChatMessageHandled + fullName: Dalamud.Game.Internal.Gui.ChatGui.OnChatMessageHandled + nameWithType: ChatGui.OnChatMessageHandled - uid: Dalamud.Game.Internal.Gui.ChatGui.OnChatMessageRaw name: OnChatMessageRaw href: api/Dalamud.Game.Internal.Gui.ChatGui.html#Dalamud_Game_Internal_Gui_ChatGui_OnChatMessageRaw commentId: E:Dalamud.Game.Internal.Gui.ChatGui.OnChatMessageRaw fullName: Dalamud.Game.Internal.Gui.ChatGui.OnChatMessageRaw nameWithType: ChatGui.OnChatMessageRaw +- uid: Dalamud.Game.Internal.Gui.ChatGui.OnChatMessageUnhandled + name: OnChatMessageUnhandled + href: api/Dalamud.Game.Internal.Gui.ChatGui.html#Dalamud_Game_Internal_Gui_ChatGui_OnChatMessageUnhandled + commentId: E:Dalamud.Game.Internal.Gui.ChatGui.OnChatMessageUnhandled + fullName: Dalamud.Game.Internal.Gui.ChatGui.OnChatMessageUnhandled + nameWithType: ChatGui.OnChatMessageUnhandled - uid: Dalamud.Game.Internal.Gui.ChatGui.OnCheckMessageHandled name: OnCheckMessageHandled href: api/Dalamud.Game.Internal.Gui.ChatGui.html#Dalamud_Game_Internal_Gui_ChatGui_OnCheckMessageHandled @@ -5482,12 +5132,30 @@ references: commentId: T:Dalamud.Game.Internal.Gui.ChatGui.OnMessageDelegate fullName: Dalamud.Game.Internal.Gui.ChatGui.OnMessageDelegate nameWithType: ChatGui.OnMessageDelegate +- uid: Dalamud.Game.Internal.Gui.ChatGui.OnMessageHandledDelegate + name: ChatGui.OnMessageHandledDelegate + href: api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageHandledDelegate.html + commentId: T:Dalamud.Game.Internal.Gui.ChatGui.OnMessageHandledDelegate + fullName: Dalamud.Game.Internal.Gui.ChatGui.OnMessageHandledDelegate + nameWithType: ChatGui.OnMessageHandledDelegate - uid: Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate name: ChatGui.OnMessageRawDelegate href: api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate.html commentId: T:Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate fullName: Dalamud.Game.Internal.Gui.ChatGui.OnMessageRawDelegate nameWithType: ChatGui.OnMessageRawDelegate +- uid: Dalamud.Game.Internal.Gui.ChatGui.OnMessageUnhandledDelegate + name: ChatGui.OnMessageUnhandledDelegate + href: api/Dalamud.Game.Internal.Gui.ChatGui.OnMessageUnhandledDelegate.html + commentId: T:Dalamud.Game.Internal.Gui.ChatGui.OnMessageUnhandledDelegate + fullName: Dalamud.Game.Internal.Gui.ChatGui.OnMessageUnhandledDelegate + nameWithType: ChatGui.OnMessageUnhandledDelegate +- uid: Dalamud.Game.Internal.Gui.ChatGui.Print(Dalamud.Game.Text.SeStringHandling.SeString) + name: Print(SeString) + href: api/Dalamud.Game.Internal.Gui.ChatGui.html#Dalamud_Game_Internal_Gui_ChatGui_Print_Dalamud_Game_Text_SeStringHandling_SeString_ + commentId: M:Dalamud.Game.Internal.Gui.ChatGui.Print(Dalamud.Game.Text.SeStringHandling.SeString) + fullName: Dalamud.Game.Internal.Gui.ChatGui.Print(Dalamud.Game.Text.SeStringHandling.SeString) + nameWithType: ChatGui.Print(SeString) - uid: Dalamud.Game.Internal.Gui.ChatGui.Print(System.String) name: Print(String) href: api/Dalamud.Game.Internal.Gui.ChatGui.html#Dalamud_Game_Internal_Gui_ChatGui_Print_System_String_ @@ -5514,6 +5182,12 @@ references: isSpec: "True" fullName: Dalamud.Game.Internal.Gui.ChatGui.PrintChat nameWithType: ChatGui.PrintChat +- uid: Dalamud.Game.Internal.Gui.ChatGui.PrintError(Dalamud.Game.Text.SeStringHandling.SeString) + name: PrintError(SeString) + href: api/Dalamud.Game.Internal.Gui.ChatGui.html#Dalamud_Game_Internal_Gui_ChatGui_PrintError_Dalamud_Game_Text_SeStringHandling_SeString_ + commentId: M:Dalamud.Game.Internal.Gui.ChatGui.PrintError(Dalamud.Game.Text.SeStringHandling.SeString) + fullName: Dalamud.Game.Internal.Gui.ChatGui.PrintError(Dalamud.Game.Text.SeStringHandling.SeString) + nameWithType: ChatGui.PrintError(SeString) - uid: Dalamud.Game.Internal.Gui.ChatGui.PrintError(System.String) name: PrintError(String) href: api/Dalamud.Game.Internal.Gui.ChatGui.html#Dalamud_Game_Internal_Gui_ChatGui_PrintError_System_String_ @@ -5598,6 +5272,25 @@ references: isSpec: "True" fullName: Dalamud.Game.Internal.Gui.GameGui.Enable nameWithType: GameGui.Enable +- uid: Dalamud.Game.Internal.Gui.GameGui.FindAgentInterface(System.IntPtr) + name: FindAgentInterface(IntPtr) + href: api/Dalamud.Game.Internal.Gui.GameGui.html#Dalamud_Game_Internal_Gui_GameGui_FindAgentInterface_System_IntPtr_ + commentId: M:Dalamud.Game.Internal.Gui.GameGui.FindAgentInterface(System.IntPtr) + fullName: Dalamud.Game.Internal.Gui.GameGui.FindAgentInterface(System.IntPtr) + nameWithType: GameGui.FindAgentInterface(IntPtr) +- uid: Dalamud.Game.Internal.Gui.GameGui.FindAgentInterface(System.String) + name: FindAgentInterface(String) + href: api/Dalamud.Game.Internal.Gui.GameGui.html#Dalamud_Game_Internal_Gui_GameGui_FindAgentInterface_System_String_ + commentId: M:Dalamud.Game.Internal.Gui.GameGui.FindAgentInterface(System.String) + fullName: Dalamud.Game.Internal.Gui.GameGui.FindAgentInterface(System.String) + nameWithType: GameGui.FindAgentInterface(String) +- uid: Dalamud.Game.Internal.Gui.GameGui.FindAgentInterface* + name: FindAgentInterface + href: api/Dalamud.Game.Internal.Gui.GameGui.html#Dalamud_Game_Internal_Gui_GameGui_FindAgentInterface_ + commentId: Overload:Dalamud.Game.Internal.Gui.GameGui.FindAgentInterface + isSpec: "True" + fullName: Dalamud.Game.Internal.Gui.GameGui.FindAgentInterface + nameWithType: GameGui.FindAgentInterface - uid: Dalamud.Game.Internal.Gui.GameGui.GameUiHidden name: GameUiHidden href: api/Dalamud.Game.Internal.Gui.GameGui.html#Dalamud_Game_Internal_Gui_GameGui_GameUiHidden @@ -5746,13 +5439,13 @@ references: isSpec: "True" fullName: Dalamud.Game.Internal.Gui.GameGui.PartyFinder nameWithType: GameGui.PartyFinder -- uid: Dalamud.Game.Internal.Gui.GameGui.ScreenToWorld(Vector2,Vector3@,System.Single) +- uid: Dalamud.Game.Internal.Gui.GameGui.ScreenToWorld(SharpDX.Vector2,SharpDX.Vector3@,System.Single) name: ScreenToWorld(Vector2, out Vector3, Single) - href: api/Dalamud.Game.Internal.Gui.GameGui.html#Dalamud_Game_Internal_Gui_GameGui_ScreenToWorld_Vector2_Vector3__System_Single_ - commentId: M:Dalamud.Game.Internal.Gui.GameGui.ScreenToWorld(Vector2,Vector3@,System.Single) + href: api/Dalamud.Game.Internal.Gui.GameGui.html#Dalamud_Game_Internal_Gui_GameGui_ScreenToWorld_SharpDX_Vector2_SharpDX_Vector3__System_Single_ + commentId: M:Dalamud.Game.Internal.Gui.GameGui.ScreenToWorld(SharpDX.Vector2,SharpDX.Vector3@,System.Single) name.vb: ScreenToWorld(Vector2, ByRef Vector3, Single) - fullName: Dalamud.Game.Internal.Gui.GameGui.ScreenToWorld(Vector2, out Vector3, System.Single) - fullName.vb: Dalamud.Game.Internal.Gui.GameGui.ScreenToWorld(Vector2, ByRef Vector3, System.Single) + fullName: Dalamud.Game.Internal.Gui.GameGui.ScreenToWorld(SharpDX.Vector2, out SharpDX.Vector3, System.Single) + fullName.vb: Dalamud.Game.Internal.Gui.GameGui.ScreenToWorld(SharpDX.Vector2, ByRef SharpDX.Vector3, System.Single) nameWithType: GameGui.ScreenToWorld(Vector2, out Vector3, Single) nameWithType.vb: GameGui.ScreenToWorld(Vector2, ByRef Vector3, Single) - uid: Dalamud.Game.Internal.Gui.GameGui.ScreenToWorld* @@ -5788,13 +5481,13 @@ references: isSpec: "True" fullName: Dalamud.Game.Internal.Gui.GameGui.Toast nameWithType: GameGui.Toast -- uid: Dalamud.Game.Internal.Gui.GameGui.WorldToScreen(Vector3,Vector2@) +- uid: Dalamud.Game.Internal.Gui.GameGui.WorldToScreen(SharpDX.Vector3,SharpDX.Vector2@) name: WorldToScreen(Vector3, out Vector2) - href: api/Dalamud.Game.Internal.Gui.GameGui.html#Dalamud_Game_Internal_Gui_GameGui_WorldToScreen_Vector3_Vector2__ - commentId: M:Dalamud.Game.Internal.Gui.GameGui.WorldToScreen(Vector3,Vector2@) + href: api/Dalamud.Game.Internal.Gui.GameGui.html#Dalamud_Game_Internal_Gui_GameGui_WorldToScreen_SharpDX_Vector3_SharpDX_Vector2__ + commentId: M:Dalamud.Game.Internal.Gui.GameGui.WorldToScreen(SharpDX.Vector3,SharpDX.Vector2@) name.vb: WorldToScreen(Vector3, ByRef Vector2) - fullName: Dalamud.Game.Internal.Gui.GameGui.WorldToScreen(Vector3, out Vector2) - fullName.vb: Dalamud.Game.Internal.Gui.GameGui.WorldToScreen(Vector3, ByRef Vector2) + fullName: Dalamud.Game.Internal.Gui.GameGui.WorldToScreen(SharpDX.Vector3, out SharpDX.Vector2) + fullName.vb: Dalamud.Game.Internal.Gui.GameGui.WorldToScreen(SharpDX.Vector3, ByRef SharpDX.Vector2) nameWithType: GameGui.WorldToScreen(Vector3, out Vector2) nameWithType.vb: GameGui.WorldToScreen(Vector3, ByRef Vector2) - uid: Dalamud.Game.Internal.Gui.GameGui.WorldToScreen* @@ -5966,6 +5659,19 @@ references: commentId: T:Dalamud.Game.Internal.Gui.PartyFinderListingEventArgs fullName: Dalamud.Game.Internal.Gui.PartyFinderListingEventArgs nameWithType: PartyFinderListingEventArgs +- uid: Dalamud.Game.Internal.Gui.PartyFinderListingEventArgs.BatchNumber + name: BatchNumber + href: api/Dalamud.Game.Internal.Gui.PartyFinderListingEventArgs.html#Dalamud_Game_Internal_Gui_PartyFinderListingEventArgs_BatchNumber + commentId: P:Dalamud.Game.Internal.Gui.PartyFinderListingEventArgs.BatchNumber + fullName: Dalamud.Game.Internal.Gui.PartyFinderListingEventArgs.BatchNumber + nameWithType: PartyFinderListingEventArgs.BatchNumber +- uid: Dalamud.Game.Internal.Gui.PartyFinderListingEventArgs.BatchNumber* + name: BatchNumber + href: api/Dalamud.Game.Internal.Gui.PartyFinderListingEventArgs.html#Dalamud_Game_Internal_Gui_PartyFinderListingEventArgs_BatchNumber_ + commentId: Overload:Dalamud.Game.Internal.Gui.PartyFinderListingEventArgs.BatchNumber + isSpec: "True" + fullName: Dalamud.Game.Internal.Gui.PartyFinderListingEventArgs.BatchNumber + nameWithType: PartyFinderListingEventArgs.BatchNumber - uid: Dalamud.Game.Internal.Gui.PartyFinderListingEventArgs.Visible name: Visible href: api/Dalamud.Game.Internal.Gui.PartyFinderListingEventArgs.html#Dalamud_Game_Internal_Gui_PartyFinderListingEventArgs_Visible @@ -8156,6 +7862,45 @@ references: isSpec: "True" fullName: Dalamud.Game.SigScanner.Module nameWithType: SigScanner.Module +- uid: Dalamud.Game.SigScanner.RDataSectionBase + name: RDataSectionBase + href: api/Dalamud.Game.SigScanner.html#Dalamud_Game_SigScanner_RDataSectionBase + commentId: P:Dalamud.Game.SigScanner.RDataSectionBase + fullName: Dalamud.Game.SigScanner.RDataSectionBase + nameWithType: SigScanner.RDataSectionBase +- uid: Dalamud.Game.SigScanner.RDataSectionBase* + name: RDataSectionBase + href: api/Dalamud.Game.SigScanner.html#Dalamud_Game_SigScanner_RDataSectionBase_ + commentId: Overload:Dalamud.Game.SigScanner.RDataSectionBase + isSpec: "True" + fullName: Dalamud.Game.SigScanner.RDataSectionBase + nameWithType: SigScanner.RDataSectionBase +- uid: Dalamud.Game.SigScanner.RDataSectionOffset + name: RDataSectionOffset + href: api/Dalamud.Game.SigScanner.html#Dalamud_Game_SigScanner_RDataSectionOffset + commentId: P:Dalamud.Game.SigScanner.RDataSectionOffset + fullName: Dalamud.Game.SigScanner.RDataSectionOffset + nameWithType: SigScanner.RDataSectionOffset +- uid: Dalamud.Game.SigScanner.RDataSectionOffset* + name: RDataSectionOffset + href: api/Dalamud.Game.SigScanner.html#Dalamud_Game_SigScanner_RDataSectionOffset_ + commentId: Overload:Dalamud.Game.SigScanner.RDataSectionOffset + isSpec: "True" + fullName: Dalamud.Game.SigScanner.RDataSectionOffset + nameWithType: SigScanner.RDataSectionOffset +- uid: Dalamud.Game.SigScanner.RDataSectionSize + name: RDataSectionSize + href: api/Dalamud.Game.SigScanner.html#Dalamud_Game_SigScanner_RDataSectionSize + commentId: P:Dalamud.Game.SigScanner.RDataSectionSize + fullName: Dalamud.Game.SigScanner.RDataSectionSize + nameWithType: SigScanner.RDataSectionSize +- uid: Dalamud.Game.SigScanner.RDataSectionSize* + name: RDataSectionSize + href: api/Dalamud.Game.SigScanner.html#Dalamud_Game_SigScanner_RDataSectionSize_ + commentId: Overload:Dalamud.Game.SigScanner.RDataSectionSize + isSpec: "True" + fullName: Dalamud.Game.SigScanner.RDataSectionSize + nameWithType: SigScanner.RDataSectionSize - uid: Dalamud.Game.SigScanner.ResolveRelativeAddress(System.IntPtr,System.Int32) name: ResolveRelativeAddress(IntPtr, Int32) href: api/Dalamud.Game.SigScanner.html#Dalamud_Game_SigScanner_ResolveRelativeAddress_System_IntPtr_System_Int32_ @@ -9985,38 +9730,6 @@ references: isSpec: "True" fullName: Dalamud.Game.Text.SeStringHandling.Payload.GetInteger nameWithType: Payload.GetInteger -- uid: Dalamud.Game.Text.SeStringHandling.Payload.GetMarkerForIntegerBytes(System.Byte[]) - name: GetMarkerForIntegerBytes(Byte[]) - href: api/Dalamud.Game.Text.SeStringHandling.Payload.html#Dalamud_Game_Text_SeStringHandling_Payload_GetMarkerForIntegerBytes_System_Byte___ - commentId: M:Dalamud.Game.Text.SeStringHandling.Payload.GetMarkerForIntegerBytes(System.Byte[]) - name.vb: GetMarkerForIntegerBytes(Byte()) - fullName: Dalamud.Game.Text.SeStringHandling.Payload.GetMarkerForIntegerBytes(System.Byte[]) - fullName.vb: Dalamud.Game.Text.SeStringHandling.Payload.GetMarkerForIntegerBytes(System.Byte()) - nameWithType: Payload.GetMarkerForIntegerBytes(Byte[]) - nameWithType.vb: Payload.GetMarkerForIntegerBytes(Byte()) -- uid: Dalamud.Game.Text.SeStringHandling.Payload.GetMarkerForIntegerBytes* - name: GetMarkerForIntegerBytes - href: api/Dalamud.Game.Text.SeStringHandling.Payload.html#Dalamud_Game_Text_SeStringHandling_Payload_GetMarkerForIntegerBytes_ - commentId: Overload:Dalamud.Game.Text.SeStringHandling.Payload.GetMarkerForIntegerBytes - isSpec: "True" - fullName: Dalamud.Game.Text.SeStringHandling.Payload.GetMarkerForIntegerBytes - nameWithType: Payload.GetMarkerForIntegerBytes -- uid: Dalamud.Game.Text.SeStringHandling.Payload.GetMarkerForPackedIntegerBytes(System.Byte[]) - name: GetMarkerForPackedIntegerBytes(Byte[]) - href: api/Dalamud.Game.Text.SeStringHandling.Payload.html#Dalamud_Game_Text_SeStringHandling_Payload_GetMarkerForPackedIntegerBytes_System_Byte___ - commentId: M:Dalamud.Game.Text.SeStringHandling.Payload.GetMarkerForPackedIntegerBytes(System.Byte[]) - name.vb: GetMarkerForPackedIntegerBytes(Byte()) - fullName: Dalamud.Game.Text.SeStringHandling.Payload.GetMarkerForPackedIntegerBytes(System.Byte[]) - fullName.vb: Dalamud.Game.Text.SeStringHandling.Payload.GetMarkerForPackedIntegerBytes(System.Byte()) - nameWithType: Payload.GetMarkerForPackedIntegerBytes(Byte[]) - nameWithType.vb: Payload.GetMarkerForPackedIntegerBytes(Byte()) -- uid: Dalamud.Game.Text.SeStringHandling.Payload.GetMarkerForPackedIntegerBytes* - name: GetMarkerForPackedIntegerBytes - href: api/Dalamud.Game.Text.SeStringHandling.Payload.html#Dalamud_Game_Text_SeStringHandling_Payload_GetMarkerForPackedIntegerBytes_ - commentId: Overload:Dalamud.Game.Text.SeStringHandling.Payload.GetMarkerForPackedIntegerBytes - isSpec: "True" - fullName: Dalamud.Game.Text.SeStringHandling.Payload.GetMarkerForPackedIntegerBytes - nameWithType: Payload.GetMarkerForPackedIntegerBytes - uid: Dalamud.Game.Text.SeStringHandling.Payload.GetPackedIntegers(System.IO.BinaryReader) name: GetPackedIntegers(BinaryReader) href: api/Dalamud.Game.Text.SeStringHandling.Payload.html#Dalamud_Game_Text_SeStringHandling_Payload_GetPackedIntegers_System_IO_BinaryReader_ @@ -10030,114 +9743,12 @@ references: isSpec: "True" fullName: Dalamud.Game.Text.SeStringHandling.Payload.GetPackedIntegers nameWithType: Payload.GetPackedIntegers -- uid: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType - name: Payload.IntegerType - href: api/Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.html - commentId: T:Dalamud.Game.Text.SeStringHandling.Payload.IntegerType - fullName: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType - nameWithType: Payload.IntegerType -- uid: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Byte - name: Byte - href: api/Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.html#Dalamud_Game_Text_SeStringHandling_Payload_IntegerType_Byte - commentId: F:Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Byte - fullName: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Byte - nameWithType: Payload.IntegerType.Byte -- uid: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.ByteSHL16 - name: ByteSHL16 - href: api/Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.html#Dalamud_Game_Text_SeStringHandling_Payload_IntegerType_ByteSHL16 - commentId: F:Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.ByteSHL16 - fullName: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.ByteSHL16 - nameWithType: Payload.IntegerType.ByteSHL16 -- uid: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.ByteTimes256 - name: ByteTimes256 - href: api/Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.html#Dalamud_Game_Text_SeStringHandling_Payload_IntegerType_ByteTimes256 - commentId: F:Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.ByteTimes256 - fullName: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.ByteTimes256 - nameWithType: Payload.IntegerType.ByteTimes256 -- uid: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int16 - name: Int16 - href: api/Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.html#Dalamud_Game_Text_SeStringHandling_Payload_IntegerType_Int16 - commentId: F:Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int16 - fullName: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int16 - nameWithType: Payload.IntegerType.Int16 -- uid: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int16Int8SHL8 - name: Int16Int8SHL8 - href: api/Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.html#Dalamud_Game_Text_SeStringHandling_Payload_IntegerType_Int16Int8SHL8 - commentId: F:Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int16Int8SHL8 - fullName: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int16Int8SHL8 - nameWithType: Payload.IntegerType.Int16Int8SHL8 -- uid: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int16Packed - name: Int16Packed - href: api/Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.html#Dalamud_Game_Text_SeStringHandling_Payload_IntegerType_Int16Packed - commentId: F:Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int16Packed - fullName: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int16Packed - nameWithType: Payload.IntegerType.Int16Packed -- uid: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int16SHL16 - name: Int16SHL16 - href: api/Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.html#Dalamud_Game_Text_SeStringHandling_Payload_IntegerType_Int16SHL16 - commentId: F:Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int16SHL16 - fullName: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int16SHL16 - nameWithType: Payload.IntegerType.Int16SHL16 -- uid: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int16SHL8 - name: Int16SHL8 - href: api/Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.html#Dalamud_Game_Text_SeStringHandling_Payload_IntegerType_Int16SHL8 - commentId: F:Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int16SHL8 - fullName: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int16SHL8 - nameWithType: Payload.IntegerType.Int16SHL8 -- uid: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int24 - name: Int24 - href: api/Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.html#Dalamud_Game_Text_SeStringHandling_Payload_IntegerType_Int24 - commentId: F:Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int24 - fullName: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int24 - nameWithType: Payload.IntegerType.Int24 -- uid: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int24Packed - name: Int24Packed - href: api/Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.html#Dalamud_Game_Text_SeStringHandling_Payload_IntegerType_Int24Packed - commentId: F:Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int24Packed - fullName: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int24Packed - nameWithType: Payload.IntegerType.Int24Packed -- uid: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int24Special - name: Int24Special - href: api/Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.html#Dalamud_Game_Text_SeStringHandling_Payload_IntegerType_Int24Special - commentId: F:Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int24Special - fullName: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int24Special - nameWithType: Payload.IntegerType.Int24Special -- uid: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int32 - name: Int32 - href: api/Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.html#Dalamud_Game_Text_SeStringHandling_Payload_IntegerType_Int32 - commentId: F:Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int32 - fullName: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int32 - nameWithType: Payload.IntegerType.Int32 -- uid: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int8SHL24 - name: Int8SHL24 - href: api/Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.html#Dalamud_Game_Text_SeStringHandling_Payload_IntegerType_Int8SHL24 - commentId: F:Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int8SHL24 - fullName: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int8SHL24 - nameWithType: Payload.IntegerType.Int8SHL24 -- uid: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int8SHL8Int8 - name: Int8SHL8Int8 - href: api/Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.html#Dalamud_Game_Text_SeStringHandling_Payload_IntegerType_Int8SHL8Int8 - commentId: F:Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int8SHL8Int8 - fullName: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int8SHL8Int8 - nameWithType: Payload.IntegerType.Int8SHL8Int8 -- uid: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int8SHL8Int8SHL8 - name: Int8SHL8Int8SHL8 - href: api/Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.html#Dalamud_Game_Text_SeStringHandling_Payload_IntegerType_Int8SHL8Int8SHL8 - commentId: F:Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int8SHL8Int8SHL8 - fullName: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.Int8SHL8Int8SHL8 - nameWithType: Payload.IntegerType.Int8SHL8Int8SHL8 -- uid: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.None - name: None - href: api/Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.html#Dalamud_Game_Text_SeStringHandling_Payload_IntegerType_None - commentId: F:Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.None - fullName: Dalamud.Game.Text.SeStringHandling.Payload.IntegerType.None - nameWithType: Payload.IntegerType.None -- uid: Dalamud.Game.Text.SeStringHandling.Payload.MakeInteger(System.UInt32,System.Boolean,System.Boolean) - name: MakeInteger(UInt32, Boolean, Boolean) - href: api/Dalamud.Game.Text.SeStringHandling.Payload.html#Dalamud_Game_Text_SeStringHandling_Payload_MakeInteger_System_UInt32_System_Boolean_System_Boolean_ - commentId: M:Dalamud.Game.Text.SeStringHandling.Payload.MakeInteger(System.UInt32,System.Boolean,System.Boolean) - fullName: Dalamud.Game.Text.SeStringHandling.Payload.MakeInteger(System.UInt32, System.Boolean, System.Boolean) - nameWithType: Payload.MakeInteger(UInt32, Boolean, Boolean) +- uid: Dalamud.Game.Text.SeStringHandling.Payload.MakeInteger(System.UInt32) + name: MakeInteger(UInt32) + href: api/Dalamud.Game.Text.SeStringHandling.Payload.html#Dalamud_Game_Text_SeStringHandling_Payload_MakeInteger_System_UInt32_ + commentId: M:Dalamud.Game.Text.SeStringHandling.Payload.MakeInteger(System.UInt32) + fullName: Dalamud.Game.Text.SeStringHandling.Payload.MakeInteger(System.UInt32) + nameWithType: Payload.MakeInteger(UInt32) - uid: Dalamud.Game.Text.SeStringHandling.Payload.MakeInteger* name: MakeInteger href: api/Dalamud.Game.Text.SeStringHandling.Payload.html#Dalamud_Game_Text_SeStringHandling_Payload_MakeInteger_ @@ -10145,12 +9756,12 @@ references: isSpec: "True" fullName: Dalamud.Game.Text.SeStringHandling.Payload.MakeInteger nameWithType: Payload.MakeInteger -- uid: Dalamud.Game.Text.SeStringHandling.Payload.MakePackedInteger(System.UInt32,System.UInt32,System.Boolean) - name: MakePackedInteger(UInt32, UInt32, Boolean) - href: api/Dalamud.Game.Text.SeStringHandling.Payload.html#Dalamud_Game_Text_SeStringHandling_Payload_MakePackedInteger_System_UInt32_System_UInt32_System_Boolean_ - commentId: M:Dalamud.Game.Text.SeStringHandling.Payload.MakePackedInteger(System.UInt32,System.UInt32,System.Boolean) - fullName: Dalamud.Game.Text.SeStringHandling.Payload.MakePackedInteger(System.UInt32, System.UInt32, System.Boolean) - nameWithType: Payload.MakePackedInteger(UInt32, UInt32, Boolean) +- uid: Dalamud.Game.Text.SeStringHandling.Payload.MakePackedInteger(System.UInt32,System.UInt32) + name: MakePackedInteger(UInt32, UInt32) + href: api/Dalamud.Game.Text.SeStringHandling.Payload.html#Dalamud_Game_Text_SeStringHandling_Payload_MakePackedInteger_System_UInt32_System_UInt32_ + commentId: M:Dalamud.Game.Text.SeStringHandling.Payload.MakePackedInteger(System.UInt32,System.UInt32) + fullName: Dalamud.Game.Text.SeStringHandling.Payload.MakePackedInteger(System.UInt32, System.UInt32) + nameWithType: Payload.MakePackedInteger(UInt32, UInt32) - uid: Dalamud.Game.Text.SeStringHandling.Payload.MakePackedInteger* name: MakePackedInteger href: api/Dalamud.Game.Text.SeStringHandling.Payload.html#Dalamud_Game_Text_SeStringHandling_Payload_MakePackedInteger_ @@ -10670,22 +10281,6 @@ references: isSpec: "True" fullName: Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.EncodeImpl nameWithType: ItemPayload.EncodeImpl -- uid: Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.GetMarkerForIntegerBytes(System.Byte[]) - name: GetMarkerForIntegerBytes(Byte[]) - href: api/Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.html#Dalamud_Game_Text_SeStringHandling_Payloads_ItemPayload_GetMarkerForIntegerBytes_System_Byte___ - commentId: M:Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.GetMarkerForIntegerBytes(System.Byte[]) - name.vb: GetMarkerForIntegerBytes(Byte()) - fullName: Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.GetMarkerForIntegerBytes(System.Byte[]) - fullName.vb: Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.GetMarkerForIntegerBytes(System.Byte()) - nameWithType: ItemPayload.GetMarkerForIntegerBytes(Byte[]) - nameWithType.vb: ItemPayload.GetMarkerForIntegerBytes(Byte()) -- uid: Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.GetMarkerForIntegerBytes* - name: GetMarkerForIntegerBytes - href: api/Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.html#Dalamud_Game_Text_SeStringHandling_Payloads_ItemPayload_GetMarkerForIntegerBytes_ - commentId: Overload:Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.GetMarkerForIntegerBytes - isSpec: "True" - fullName: Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.GetMarkerForIntegerBytes - nameWithType: ItemPayload.GetMarkerForIntegerBytes - uid: Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.IsHQ name: IsHQ href: api/Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.html#Dalamud_Game_Text_SeStringHandling_Payloads_ItemPayload_IsHQ @@ -10712,19 +10307,6 @@ references: isSpec: "True" fullName: Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.Item nameWithType: ItemPayload.Item -- uid: Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.MakeInteger(System.UInt32,System.Boolean,System.Boolean) - name: MakeInteger(UInt32, Boolean, Boolean) - href: api/Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.html#Dalamud_Game_Text_SeStringHandling_Payloads_ItemPayload_MakeInteger_System_UInt32_System_Boolean_System_Boolean_ - commentId: M:Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.MakeInteger(System.UInt32,System.Boolean,System.Boolean) - fullName: Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.MakeInteger(System.UInt32, System.Boolean, System.Boolean) - nameWithType: ItemPayload.MakeInteger(UInt32, Boolean, Boolean) -- uid: Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.MakeInteger* - name: MakeInteger - href: api/Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.html#Dalamud_Game_Text_SeStringHandling_Payloads_ItemPayload_MakeInteger_ - commentId: Overload:Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.MakeInteger - isSpec: "True" - fullName: Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.MakeInteger - nameWithType: ItemPayload.MakeInteger - uid: Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.ToString name: ToString() href: api/Dalamud.Game.Text.SeStringHandling.Payloads.ItemPayload.html#Dalamud_Game_Text_SeStringHandling_Payloads_ItemPayload_ToString @@ -10828,22 +10410,6 @@ references: isSpec: "True" fullName: Dalamud.Game.Text.SeStringHandling.Payloads.MapLinkPayload.EncodeImpl nameWithType: MapLinkPayload.EncodeImpl -- uid: Dalamud.Game.Text.SeStringHandling.Payloads.MapLinkPayload.GetMarkerForIntegerBytes(System.Byte[]) - name: GetMarkerForIntegerBytes(Byte[]) - href: api/Dalamud.Game.Text.SeStringHandling.Payloads.MapLinkPayload.html#Dalamud_Game_Text_SeStringHandling_Payloads_MapLinkPayload_GetMarkerForIntegerBytes_System_Byte___ - commentId: M:Dalamud.Game.Text.SeStringHandling.Payloads.MapLinkPayload.GetMarkerForIntegerBytes(System.Byte[]) - name.vb: GetMarkerForIntegerBytes(Byte()) - fullName: Dalamud.Game.Text.SeStringHandling.Payloads.MapLinkPayload.GetMarkerForIntegerBytes(System.Byte[]) - fullName.vb: Dalamud.Game.Text.SeStringHandling.Payloads.MapLinkPayload.GetMarkerForIntegerBytes(System.Byte()) - nameWithType: MapLinkPayload.GetMarkerForIntegerBytes(Byte[]) - nameWithType.vb: MapLinkPayload.GetMarkerForIntegerBytes(Byte()) -- uid: Dalamud.Game.Text.SeStringHandling.Payloads.MapLinkPayload.GetMarkerForIntegerBytes* - name: GetMarkerForIntegerBytes - href: api/Dalamud.Game.Text.SeStringHandling.Payloads.MapLinkPayload.html#Dalamud_Game_Text_SeStringHandling_Payloads_MapLinkPayload_GetMarkerForIntegerBytes_ - commentId: Overload:Dalamud.Game.Text.SeStringHandling.Payloads.MapLinkPayload.GetMarkerForIntegerBytes - isSpec: "True" - fullName: Dalamud.Game.Text.SeStringHandling.Payloads.MapLinkPayload.GetMarkerForIntegerBytes - nameWithType: MapLinkPayload.GetMarkerForIntegerBytes - uid: Dalamud.Game.Text.SeStringHandling.Payloads.MapLinkPayload.Map name: Map href: api/Dalamud.Game.Text.SeStringHandling.Payloads.MapLinkPayload.html#Dalamud_Game_Text_SeStringHandling_Payloads_MapLinkPayload_Map @@ -11578,22 +11144,6 @@ references: isSpec: "True" fullName: Dalamud.Game.Text.SeStringHandling.Payloads.UIForegroundPayload.EncodeImpl nameWithType: UIForegroundPayload.EncodeImpl -- uid: Dalamud.Game.Text.SeStringHandling.Payloads.UIForegroundPayload.GetMarkerForIntegerBytes(System.Byte[]) - name: GetMarkerForIntegerBytes(Byte[]) - href: api/Dalamud.Game.Text.SeStringHandling.Payloads.UIForegroundPayload.html#Dalamud_Game_Text_SeStringHandling_Payloads_UIForegroundPayload_GetMarkerForIntegerBytes_System_Byte___ - commentId: M:Dalamud.Game.Text.SeStringHandling.Payloads.UIForegroundPayload.GetMarkerForIntegerBytes(System.Byte[]) - name.vb: GetMarkerForIntegerBytes(Byte()) - fullName: Dalamud.Game.Text.SeStringHandling.Payloads.UIForegroundPayload.GetMarkerForIntegerBytes(System.Byte[]) - fullName.vb: Dalamud.Game.Text.SeStringHandling.Payloads.UIForegroundPayload.GetMarkerForIntegerBytes(System.Byte()) - nameWithType: UIForegroundPayload.GetMarkerForIntegerBytes(Byte[]) - nameWithType.vb: UIForegroundPayload.GetMarkerForIntegerBytes(Byte()) -- uid: Dalamud.Game.Text.SeStringHandling.Payloads.UIForegroundPayload.GetMarkerForIntegerBytes* - name: GetMarkerForIntegerBytes - href: api/Dalamud.Game.Text.SeStringHandling.Payloads.UIForegroundPayload.html#Dalamud_Game_Text_SeStringHandling_Payloads_UIForegroundPayload_GetMarkerForIntegerBytes_ - commentId: Overload:Dalamud.Game.Text.SeStringHandling.Payloads.UIForegroundPayload.GetMarkerForIntegerBytes - isSpec: "True" - fullName: Dalamud.Game.Text.SeStringHandling.Payloads.UIForegroundPayload.GetMarkerForIntegerBytes - nameWithType: UIForegroundPayload.GetMarkerForIntegerBytes - uid: Dalamud.Game.Text.SeStringHandling.Payloads.UIForegroundPayload.IsEnabled name: IsEnabled href: api/Dalamud.Game.Text.SeStringHandling.Payloads.UIForegroundPayload.html#Dalamud_Game_Text_SeStringHandling_Payloads_UIForegroundPayload_IsEnabled @@ -11730,22 +11280,6 @@ references: isSpec: "True" fullName: Dalamud.Game.Text.SeStringHandling.Payloads.UIGlowPayload.EncodeImpl nameWithType: UIGlowPayload.EncodeImpl -- uid: Dalamud.Game.Text.SeStringHandling.Payloads.UIGlowPayload.GetMarkerForIntegerBytes(System.Byte[]) - name: GetMarkerForIntegerBytes(Byte[]) - href: api/Dalamud.Game.Text.SeStringHandling.Payloads.UIGlowPayload.html#Dalamud_Game_Text_SeStringHandling_Payloads_UIGlowPayload_GetMarkerForIntegerBytes_System_Byte___ - commentId: M:Dalamud.Game.Text.SeStringHandling.Payloads.UIGlowPayload.GetMarkerForIntegerBytes(System.Byte[]) - name.vb: GetMarkerForIntegerBytes(Byte()) - fullName: Dalamud.Game.Text.SeStringHandling.Payloads.UIGlowPayload.GetMarkerForIntegerBytes(System.Byte[]) - fullName.vb: Dalamud.Game.Text.SeStringHandling.Payloads.UIGlowPayload.GetMarkerForIntegerBytes(System.Byte()) - nameWithType: UIGlowPayload.GetMarkerForIntegerBytes(Byte[]) - nameWithType.vb: UIGlowPayload.GetMarkerForIntegerBytes(Byte()) -- uid: Dalamud.Game.Text.SeStringHandling.Payloads.UIGlowPayload.GetMarkerForIntegerBytes* - name: GetMarkerForIntegerBytes - href: api/Dalamud.Game.Text.SeStringHandling.Payloads.UIGlowPayload.html#Dalamud_Game_Text_SeStringHandling_Payloads_UIGlowPayload_GetMarkerForIntegerBytes_ - commentId: Overload:Dalamud.Game.Text.SeStringHandling.Payloads.UIGlowPayload.GetMarkerForIntegerBytes - isSpec: "True" - fullName: Dalamud.Game.Text.SeStringHandling.Payloads.UIGlowPayload.GetMarkerForIntegerBytes - nameWithType: UIGlowPayload.GetMarkerForIntegerBytes - uid: Dalamud.Game.Text.SeStringHandling.Payloads.UIGlowPayload.IsEnabled name: IsEnabled href: api/Dalamud.Game.Text.SeStringHandling.Payloads.UIGlowPayload.html#Dalamud_Game_Text_SeStringHandling_Payloads_UIGlowPayload_IsEnabled @@ -11999,6 +11533,25 @@ references: isSpec: "True" fullName: Dalamud.Game.Text.SeStringHandling.SeString.FromJson nameWithType: SeString.FromJson +- uid: Dalamud.Game.Text.SeStringHandling.SeString.op_Implicit(System.String)~Dalamud.Game.Text.SeStringHandling.SeString + name: Implicit(String to SeString) + href: api/Dalamud.Game.Text.SeStringHandling.SeString.html#Dalamud_Game_Text_SeStringHandling_SeString_op_Implicit_System_String__Dalamud_Game_Text_SeStringHandling_SeString + commentId: M:Dalamud.Game.Text.SeStringHandling.SeString.op_Implicit(System.String)~Dalamud.Game.Text.SeStringHandling.SeString + name.vb: Widening(String to SeString) + fullName: Dalamud.Game.Text.SeStringHandling.SeString.Implicit(System.String to Dalamud.Game.Text.SeStringHandling.SeString) + fullName.vb: Dalamud.Game.Text.SeStringHandling.SeString.Widening(System.String to Dalamud.Game.Text.SeStringHandling.SeString) + nameWithType: SeString.Implicit(String to SeString) + nameWithType.vb: SeString.Widening(String to SeString) +- uid: Dalamud.Game.Text.SeStringHandling.SeString.op_Implicit* + name: Implicit + href: api/Dalamud.Game.Text.SeStringHandling.SeString.html#Dalamud_Game_Text_SeStringHandling_SeString_op_Implicit_ + commentId: Overload:Dalamud.Game.Text.SeStringHandling.SeString.op_Implicit + isSpec: "True" + name.vb: Widening + fullName: Dalamud.Game.Text.SeStringHandling.SeString.Implicit + fullName.vb: Dalamud.Game.Text.SeStringHandling.SeString.Widening + nameWithType: SeString.Implicit + nameWithType.vb: SeString.Widening - uid: Dalamud.Game.Text.SeStringHandling.SeString.Payloads name: Payloads href: api/Dalamud.Game.Text.SeStringHandling.SeString.html#Dalamud_Game_Text_SeStringHandling_SeString_Payloads @@ -12070,11 +11623,11 @@ references: isSpec: "True" fullName: Dalamud.Game.Text.SeStringHandling.SeStringManager.SeStringManager nameWithType: SeStringManager.SeStringManager -- uid: Dalamud.Game.Text.SeStringHandling.SeStringManager.CreateItemLink(Item,System.Boolean,System.String) +- uid: Dalamud.Game.Text.SeStringHandling.SeStringManager.CreateItemLink(Lumina.Excel.GeneratedSheets.Item,System.Boolean,System.String) name: CreateItemLink(Item, Boolean, String) - href: api/Dalamud.Game.Text.SeStringHandling.SeStringManager.html#Dalamud_Game_Text_SeStringHandling_SeStringManager_CreateItemLink_Item_System_Boolean_System_String_ - commentId: M:Dalamud.Game.Text.SeStringHandling.SeStringManager.CreateItemLink(Item,System.Boolean,System.String) - fullName: Dalamud.Game.Text.SeStringHandling.SeStringManager.CreateItemLink(Item, System.Boolean, System.String) + href: api/Dalamud.Game.Text.SeStringHandling.SeStringManager.html#Dalamud_Game_Text_SeStringHandling_SeStringManager_CreateItemLink_Lumina_Excel_GeneratedSheets_Item_System_Boolean_System_String_ + commentId: M:Dalamud.Game.Text.SeStringHandling.SeStringManager.CreateItemLink(Lumina.Excel.GeneratedSheets.Item,System.Boolean,System.String) + fullName: Dalamud.Game.Text.SeStringHandling.SeStringManager.CreateItemLink(Lumina.Excel.GeneratedSheets.Item, System.Boolean, System.String) nameWithType: SeStringManager.CreateItemLink(Item, Boolean, String) - uid: Dalamud.Game.Text.SeStringHandling.SeStringManager.CreateItemLink(System.UInt32,System.Boolean,System.String) name: CreateItemLink(UInt32, Boolean, String) @@ -12692,44 +12245,250 @@ references: commentId: N:Dalamud.Interface fullName: Dalamud.Interface nameWithType: Dalamud.Interface +- uid: Dalamud.Interface.Colors + name: Dalamud.Interface.Colors + href: api/Dalamud.Interface.Colors.html + commentId: N:Dalamud.Interface.Colors + fullName: Dalamud.Interface.Colors + nameWithType: Dalamud.Interface.Colors +- uid: Dalamud.Interface.Colors.ImGuiColors + name: ImGuiColors + href: api/Dalamud.Interface.Colors.ImGuiColors.html + commentId: T:Dalamud.Interface.Colors.ImGuiColors + fullName: Dalamud.Interface.Colors.ImGuiColors + nameWithType: ImGuiColors +- uid: Dalamud.Interface.Colors.ImGuiColors.DalamudGrey + name: DalamudGrey + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_DalamudGrey + commentId: P:Dalamud.Interface.Colors.ImGuiColors.DalamudGrey + fullName: Dalamud.Interface.Colors.ImGuiColors.DalamudGrey + nameWithType: ImGuiColors.DalamudGrey +- uid: Dalamud.Interface.Colors.ImGuiColors.DalamudGrey* + name: DalamudGrey + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_DalamudGrey_ + commentId: Overload:Dalamud.Interface.Colors.ImGuiColors.DalamudGrey + isSpec: "True" + fullName: Dalamud.Interface.Colors.ImGuiColors.DalamudGrey + nameWithType: ImGuiColors.DalamudGrey +- uid: Dalamud.Interface.Colors.ImGuiColors.DalamudGrey2 + name: DalamudGrey2 + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_DalamudGrey2 + commentId: P:Dalamud.Interface.Colors.ImGuiColors.DalamudGrey2 + fullName: Dalamud.Interface.Colors.ImGuiColors.DalamudGrey2 + nameWithType: ImGuiColors.DalamudGrey2 +- uid: Dalamud.Interface.Colors.ImGuiColors.DalamudGrey2* + name: DalamudGrey2 + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_DalamudGrey2_ + commentId: Overload:Dalamud.Interface.Colors.ImGuiColors.DalamudGrey2 + isSpec: "True" + fullName: Dalamud.Interface.Colors.ImGuiColors.DalamudGrey2 + nameWithType: ImGuiColors.DalamudGrey2 +- uid: Dalamud.Interface.Colors.ImGuiColors.DalamudGrey3 + name: DalamudGrey3 + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_DalamudGrey3 + commentId: P:Dalamud.Interface.Colors.ImGuiColors.DalamudGrey3 + fullName: Dalamud.Interface.Colors.ImGuiColors.DalamudGrey3 + nameWithType: ImGuiColors.DalamudGrey3 +- uid: Dalamud.Interface.Colors.ImGuiColors.DalamudGrey3* + name: DalamudGrey3 + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_DalamudGrey3_ + commentId: Overload:Dalamud.Interface.Colors.ImGuiColors.DalamudGrey3 + isSpec: "True" + fullName: Dalamud.Interface.Colors.ImGuiColors.DalamudGrey3 + nameWithType: ImGuiColors.DalamudGrey3 +- uid: Dalamud.Interface.Colors.ImGuiColors.DalamudOrange + name: DalamudOrange + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_DalamudOrange + commentId: P:Dalamud.Interface.Colors.ImGuiColors.DalamudOrange + fullName: Dalamud.Interface.Colors.ImGuiColors.DalamudOrange + nameWithType: ImGuiColors.DalamudOrange +- uid: Dalamud.Interface.Colors.ImGuiColors.DalamudOrange* + name: DalamudOrange + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_DalamudOrange_ + commentId: Overload:Dalamud.Interface.Colors.ImGuiColors.DalamudOrange + isSpec: "True" + fullName: Dalamud.Interface.Colors.ImGuiColors.DalamudOrange + nameWithType: ImGuiColors.DalamudOrange +- uid: Dalamud.Interface.Colors.ImGuiColors.DalamudRed + name: DalamudRed + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_DalamudRed + commentId: P:Dalamud.Interface.Colors.ImGuiColors.DalamudRed + fullName: Dalamud.Interface.Colors.ImGuiColors.DalamudRed + nameWithType: ImGuiColors.DalamudRed +- uid: Dalamud.Interface.Colors.ImGuiColors.DalamudRed* + name: DalamudRed + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_DalamudRed_ + commentId: Overload:Dalamud.Interface.Colors.ImGuiColors.DalamudRed + isSpec: "True" + fullName: Dalamud.Interface.Colors.ImGuiColors.DalamudRed + nameWithType: ImGuiColors.DalamudRed +- uid: Dalamud.Interface.Colors.ImGuiColors.DalamudWhite + name: DalamudWhite + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_DalamudWhite + commentId: P:Dalamud.Interface.Colors.ImGuiColors.DalamudWhite + fullName: Dalamud.Interface.Colors.ImGuiColors.DalamudWhite + nameWithType: ImGuiColors.DalamudWhite +- uid: Dalamud.Interface.Colors.ImGuiColors.DalamudWhite* + name: DalamudWhite + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_DalamudWhite_ + commentId: Overload:Dalamud.Interface.Colors.ImGuiColors.DalamudWhite + isSpec: "True" + fullName: Dalamud.Interface.Colors.ImGuiColors.DalamudWhite + nameWithType: ImGuiColors.DalamudWhite +- uid: Dalamud.Interface.Colors.ImGuiColors.DalamudWhite2 + name: DalamudWhite2 + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_DalamudWhite2 + commentId: P:Dalamud.Interface.Colors.ImGuiColors.DalamudWhite2 + fullName: Dalamud.Interface.Colors.ImGuiColors.DalamudWhite2 + nameWithType: ImGuiColors.DalamudWhite2 +- uid: Dalamud.Interface.Colors.ImGuiColors.DalamudWhite2* + name: DalamudWhite2 + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_DalamudWhite2_ + commentId: Overload:Dalamud.Interface.Colors.ImGuiColors.DalamudWhite2 + isSpec: "True" + fullName: Dalamud.Interface.Colors.ImGuiColors.DalamudWhite2 + nameWithType: ImGuiColors.DalamudWhite2 +- uid: Dalamud.Interface.Colors.ImGuiColors.DPSRed + name: DPSRed + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_DPSRed + commentId: P:Dalamud.Interface.Colors.ImGuiColors.DPSRed + fullName: Dalamud.Interface.Colors.ImGuiColors.DPSRed + nameWithType: ImGuiColors.DPSRed +- uid: Dalamud.Interface.Colors.ImGuiColors.DPSRed* + name: DPSRed + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_DPSRed_ + commentId: Overload:Dalamud.Interface.Colors.ImGuiColors.DPSRed + isSpec: "True" + fullName: Dalamud.Interface.Colors.ImGuiColors.DPSRed + nameWithType: ImGuiColors.DPSRed +- uid: Dalamud.Interface.Colors.ImGuiColors.HealerGreen + name: HealerGreen + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_HealerGreen + commentId: P:Dalamud.Interface.Colors.ImGuiColors.HealerGreen + fullName: Dalamud.Interface.Colors.ImGuiColors.HealerGreen + nameWithType: ImGuiColors.HealerGreen +- uid: Dalamud.Interface.Colors.ImGuiColors.HealerGreen* + name: HealerGreen + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_HealerGreen_ + commentId: Overload:Dalamud.Interface.Colors.ImGuiColors.HealerGreen + isSpec: "True" + fullName: Dalamud.Interface.Colors.ImGuiColors.HealerGreen + nameWithType: ImGuiColors.HealerGreen +- uid: Dalamud.Interface.Colors.ImGuiColors.TankBlue + name: TankBlue + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_TankBlue + commentId: P:Dalamud.Interface.Colors.ImGuiColors.TankBlue + fullName: Dalamud.Interface.Colors.ImGuiColors.TankBlue + nameWithType: ImGuiColors.TankBlue +- uid: Dalamud.Interface.Colors.ImGuiColors.TankBlue* + name: TankBlue + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_TankBlue_ + commentId: Overload:Dalamud.Interface.Colors.ImGuiColors.TankBlue + isSpec: "True" + fullName: Dalamud.Interface.Colors.ImGuiColors.TankBlue + nameWithType: ImGuiColors.TankBlue +- uid: Dalamud.Interface.Colors.ImGuiColors.White + name: White + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_White + commentId: P:Dalamud.Interface.Colors.ImGuiColors.White + fullName: Dalamud.Interface.Colors.ImGuiColors.White + nameWithType: ImGuiColors.White +- uid: Dalamud.Interface.Colors.ImGuiColors.White* + name: White + href: api/Dalamud.Interface.Colors.ImGuiColors.html#Dalamud_Interface_Colors_ImGuiColors_White_ + commentId: Overload:Dalamud.Interface.Colors.ImGuiColors.White + isSpec: "True" + fullName: Dalamud.Interface.Colors.ImGuiColors.White + nameWithType: ImGuiColors.White - uid: Dalamud.Interface.Components name: Dalamud.Interface.Components href: api/Dalamud.Interface.Components.html commentId: N:Dalamud.Interface.Components fullName: Dalamud.Interface.Components nameWithType: Dalamud.Interface.Components -- uid: Dalamud.Interface.Components.IComponent - name: IComponent - href: api/Dalamud.Interface.Components.IComponent.html - commentId: T:Dalamud.Interface.Components.IComponent - fullName: Dalamud.Interface.Components.IComponent - nameWithType: IComponent -- uid: Dalamud.Interface.Components.IComponent.Draw - name: Draw() - href: api/Dalamud.Interface.Components.IComponent.html#Dalamud_Interface_Components_IComponent_Draw - commentId: M:Dalamud.Interface.Components.IComponent.Draw - fullName: Dalamud.Interface.Components.IComponent.Draw() - nameWithType: IComponent.Draw() -- uid: Dalamud.Interface.Components.IComponent.Draw* - name: Draw - href: api/Dalamud.Interface.Components.IComponent.html#Dalamud_Interface_Components_IComponent_Draw_ - commentId: Overload:Dalamud.Interface.Components.IComponent.Draw +- uid: Dalamud.Interface.Components.ImGuiComponents + name: ImGuiComponents + href: api/Dalamud.Interface.Components.ImGuiComponents.html + commentId: T:Dalamud.Interface.Components.ImGuiComponents + fullName: Dalamud.Interface.Components.ImGuiComponents + nameWithType: ImGuiComponents +- uid: Dalamud.Interface.Components.ImGuiComponents.ColorPickerWithPalette(System.Int32,System.String,System.Numerics.Vector4) + name: ColorPickerWithPalette(Int32, String, Vector4) + href: api/Dalamud.Interface.Components.ImGuiComponents.html#Dalamud_Interface_Components_ImGuiComponents_ColorPickerWithPalette_System_Int32_System_String_System_Numerics_Vector4_ + commentId: M:Dalamud.Interface.Components.ImGuiComponents.ColorPickerWithPalette(System.Int32,System.String,System.Numerics.Vector4) + fullName: Dalamud.Interface.Components.ImGuiComponents.ColorPickerWithPalette(System.Int32, System.String, System.Numerics.Vector4) + nameWithType: ImGuiComponents.ColorPickerWithPalette(Int32, String, Vector4) +- uid: Dalamud.Interface.Components.ImGuiComponents.ColorPickerWithPalette(System.Int32,System.String,System.Numerics.Vector4,ImGuiNET.ImGuiColorEditFlags) + name: ColorPickerWithPalette(Int32, String, Vector4, ImGuiColorEditFlags) + href: api/Dalamud.Interface.Components.ImGuiComponents.html#Dalamud_Interface_Components_ImGuiComponents_ColorPickerWithPalette_System_Int32_System_String_System_Numerics_Vector4_ImGuiNET_ImGuiColorEditFlags_ + commentId: M:Dalamud.Interface.Components.ImGuiComponents.ColorPickerWithPalette(System.Int32,System.String,System.Numerics.Vector4,ImGuiNET.ImGuiColorEditFlags) + fullName: Dalamud.Interface.Components.ImGuiComponents.ColorPickerWithPalette(System.Int32, System.String, System.Numerics.Vector4, ImGuiNET.ImGuiColorEditFlags) + nameWithType: ImGuiComponents.ColorPickerWithPalette(Int32, String, Vector4, ImGuiColorEditFlags) +- uid: Dalamud.Interface.Components.ImGuiComponents.ColorPickerWithPalette* + name: ColorPickerWithPalette + href: api/Dalamud.Interface.Components.ImGuiComponents.html#Dalamud_Interface_Components_ImGuiComponents_ColorPickerWithPalette_ + commentId: Overload:Dalamud.Interface.Components.ImGuiComponents.ColorPickerWithPalette isSpec: "True" - fullName: Dalamud.Interface.Components.IComponent.Draw - nameWithType: IComponent.Draw -- uid: Dalamud.Interface.Components.IComponent.Name - name: Name - href: api/Dalamud.Interface.Components.IComponent.html#Dalamud_Interface_Components_IComponent_Name - commentId: P:Dalamud.Interface.Components.IComponent.Name - fullName: Dalamud.Interface.Components.IComponent.Name - nameWithType: IComponent.Name -- uid: Dalamud.Interface.Components.IComponent.Name* - name: Name - href: api/Dalamud.Interface.Components.IComponent.html#Dalamud_Interface_Components_IComponent_Name_ - commentId: Overload:Dalamud.Interface.Components.IComponent.Name + fullName: Dalamud.Interface.Components.ImGuiComponents.ColorPickerWithPalette + nameWithType: ImGuiComponents.ColorPickerWithPalette +- uid: Dalamud.Interface.Components.ImGuiComponents.HelpMarker(System.String) + name: HelpMarker(String) + href: api/Dalamud.Interface.Components.ImGuiComponents.html#Dalamud_Interface_Components_ImGuiComponents_HelpMarker_System_String_ + commentId: M:Dalamud.Interface.Components.ImGuiComponents.HelpMarker(System.String) + fullName: Dalamud.Interface.Components.ImGuiComponents.HelpMarker(System.String) + nameWithType: ImGuiComponents.HelpMarker(String) +- uid: Dalamud.Interface.Components.ImGuiComponents.HelpMarker* + name: HelpMarker + href: api/Dalamud.Interface.Components.ImGuiComponents.html#Dalamud_Interface_Components_ImGuiComponents_HelpMarker_ + commentId: Overload:Dalamud.Interface.Components.ImGuiComponents.HelpMarker isSpec: "True" - fullName: Dalamud.Interface.Components.IComponent.Name - nameWithType: IComponent.Name + fullName: Dalamud.Interface.Components.ImGuiComponents.HelpMarker + nameWithType: ImGuiComponents.HelpMarker +- uid: Dalamud.Interface.Components.ImGuiComponents.IconButton(System.Int32,Dalamud.Interface.FontAwesomeIcon) + name: IconButton(Int32, FontAwesomeIcon) + href: api/Dalamud.Interface.Components.ImGuiComponents.html#Dalamud_Interface_Components_ImGuiComponents_IconButton_System_Int32_Dalamud_Interface_FontAwesomeIcon_ + commentId: M:Dalamud.Interface.Components.ImGuiComponents.IconButton(System.Int32,Dalamud.Interface.FontAwesomeIcon) + fullName: Dalamud.Interface.Components.ImGuiComponents.IconButton(System.Int32, Dalamud.Interface.FontAwesomeIcon) + nameWithType: ImGuiComponents.IconButton(Int32, FontAwesomeIcon) +- uid: Dalamud.Interface.Components.ImGuiComponents.IconButton(System.Int32,Dalamud.Interface.FontAwesomeIcon,System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4) + name: IconButton(Int32, FontAwesomeIcon, Vector4, Vector4, Vector4) + href: api/Dalamud.Interface.Components.ImGuiComponents.html#Dalamud_Interface_Components_ImGuiComponents_IconButton_System_Int32_Dalamud_Interface_FontAwesomeIcon_System_Numerics_Vector4_System_Numerics_Vector4_System_Numerics_Vector4_ + commentId: M:Dalamud.Interface.Components.ImGuiComponents.IconButton(System.Int32,Dalamud.Interface.FontAwesomeIcon,System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4) + fullName: Dalamud.Interface.Components.ImGuiComponents.IconButton(System.Int32, Dalamud.Interface.FontAwesomeIcon, System.Numerics.Vector4, System.Numerics.Vector4, System.Numerics.Vector4) + nameWithType: ImGuiComponents.IconButton(Int32, FontAwesomeIcon, Vector4, Vector4, Vector4) +- uid: Dalamud.Interface.Components.ImGuiComponents.IconButton* + name: IconButton + href: api/Dalamud.Interface.Components.ImGuiComponents.html#Dalamud_Interface_Components_ImGuiComponents_IconButton_ + commentId: Overload:Dalamud.Interface.Components.ImGuiComponents.IconButton + isSpec: "True" + fullName: Dalamud.Interface.Components.ImGuiComponents.IconButton + nameWithType: ImGuiComponents.IconButton +- uid: Dalamud.Interface.Components.ImGuiComponents.Test + name: Test() + href: api/Dalamud.Interface.Components.ImGuiComponents.html#Dalamud_Interface_Components_ImGuiComponents_Test + commentId: M:Dalamud.Interface.Components.ImGuiComponents.Test + fullName: Dalamud.Interface.Components.ImGuiComponents.Test() + nameWithType: ImGuiComponents.Test() +- uid: Dalamud.Interface.Components.ImGuiComponents.Test* + name: Test + href: api/Dalamud.Interface.Components.ImGuiComponents.html#Dalamud_Interface_Components_ImGuiComponents_Test_ + commentId: Overload:Dalamud.Interface.Components.ImGuiComponents.Test + isSpec: "True" + fullName: Dalamud.Interface.Components.ImGuiComponents.Test + nameWithType: ImGuiComponents.Test +- uid: Dalamud.Interface.Components.ImGuiComponents.TextWithLabel(System.String,System.String,System.String) + name: TextWithLabel(String, String, String) + href: api/Dalamud.Interface.Components.ImGuiComponents.html#Dalamud_Interface_Components_ImGuiComponents_TextWithLabel_System_String_System_String_System_String_ + commentId: M:Dalamud.Interface.Components.ImGuiComponents.TextWithLabel(System.String,System.String,System.String) + fullName: Dalamud.Interface.Components.ImGuiComponents.TextWithLabel(System.String, System.String, System.String) + nameWithType: ImGuiComponents.TextWithLabel(String, String, String) +- uid: Dalamud.Interface.Components.ImGuiComponents.TextWithLabel* + name: TextWithLabel + href: api/Dalamud.Interface.Components.ImGuiComponents.html#Dalamud_Interface_Components_ImGuiComponents_TextWithLabel_ + commentId: Overload:Dalamud.Interface.Components.ImGuiComponents.TextWithLabel + isSpec: "True" + fullName: Dalamud.Interface.Components.ImGuiComponents.TextWithLabel + nameWithType: ImGuiComponents.TextWithLabel - uid: Dalamud.Interface.FontAwesomeExtensions name: FontAwesomeExtensions href: api/Dalamud.Interface.FontAwesomeExtensions.html @@ -21222,6 +20981,19 @@ references: commentId: T:Dalamud.Interface.ImGuiHelpers fullName: Dalamud.Interface.ImGuiHelpers nameWithType: ImGuiHelpers +- uid: Dalamud.Interface.ImGuiHelpers.DefaultColorPalette(System.Int32) + name: DefaultColorPalette(Int32) + href: api/Dalamud.Interface.ImGuiHelpers.html#Dalamud_Interface_ImGuiHelpers_DefaultColorPalette_System_Int32_ + commentId: M:Dalamud.Interface.ImGuiHelpers.DefaultColorPalette(System.Int32) + fullName: Dalamud.Interface.ImGuiHelpers.DefaultColorPalette(System.Int32) + nameWithType: ImGuiHelpers.DefaultColorPalette(Int32) +- uid: Dalamud.Interface.ImGuiHelpers.DefaultColorPalette* + name: DefaultColorPalette + href: api/Dalamud.Interface.ImGuiHelpers.html#Dalamud_Interface_ImGuiHelpers_DefaultColorPalette_ + commentId: Overload:Dalamud.Interface.ImGuiHelpers.DefaultColorPalette + isSpec: "True" + fullName: Dalamud.Interface.ImGuiHelpers.DefaultColorPalette + nameWithType: ImGuiHelpers.DefaultColorPalette - uid: Dalamud.Interface.ImGuiHelpers.ForceNextWindowMainViewport name: ForceNextWindowMainViewport() href: api/Dalamud.Interface.ImGuiHelpers.html#Dalamud_Interface_ImGuiHelpers_ForceNextWindowMainViewport @@ -21267,6 +21039,12 @@ references: commentId: M:Dalamud.Interface.ImGuiHelpers.ScaledDummy(System.Numerics.Vector2) fullName: Dalamud.Interface.ImGuiHelpers.ScaledDummy(System.Numerics.Vector2) nameWithType: ImGuiHelpers.ScaledDummy(Vector2) +- uid: Dalamud.Interface.ImGuiHelpers.ScaledDummy(System.Single) + name: ScaledDummy(Single) + href: api/Dalamud.Interface.ImGuiHelpers.html#Dalamud_Interface_ImGuiHelpers_ScaledDummy_System_Single_ + commentId: M:Dalamud.Interface.ImGuiHelpers.ScaledDummy(System.Single) + fullName: Dalamud.Interface.ImGuiHelpers.ScaledDummy(System.Single) + nameWithType: ImGuiHelpers.ScaledDummy(Single) - uid: Dalamud.Interface.ImGuiHelpers.ScaledDummy* name: ScaledDummy href: api/Dalamud.Interface.ImGuiHelpers.html#Dalamud_Interface_ImGuiHelpers_ScaledDummy_ @@ -21319,11 +21097,11 @@ references: commentId: T:Dalamud.Interface.MySinkExtensions fullName: Dalamud.Interface.MySinkExtensions nameWithType: MySinkExtensions -- uid: Dalamud.Interface.MySinkExtensions.EventSink(LoggerSinkConfiguration,System.IFormatProvider) +- uid: Dalamud.Interface.MySinkExtensions.EventSink(Serilog.Configuration.LoggerSinkConfiguration,System.IFormatProvider) name: EventSink(LoggerSinkConfiguration, IFormatProvider) - href: api/Dalamud.Interface.MySinkExtensions.html#Dalamud_Interface_MySinkExtensions_EventSink_LoggerSinkConfiguration_System_IFormatProvider_ - commentId: M:Dalamud.Interface.MySinkExtensions.EventSink(LoggerSinkConfiguration,System.IFormatProvider) - fullName: Dalamud.Interface.MySinkExtensions.EventSink(LoggerSinkConfiguration, System.IFormatProvider) + href: api/Dalamud.Interface.MySinkExtensions.html#Dalamud_Interface_MySinkExtensions_EventSink_Serilog_Configuration_LoggerSinkConfiguration_System_IFormatProvider_ + commentId: M:Dalamud.Interface.MySinkExtensions.EventSink(Serilog.Configuration.LoggerSinkConfiguration,System.IFormatProvider) + fullName: Dalamud.Interface.MySinkExtensions.EventSink(Serilog.Configuration.LoggerSinkConfiguration, System.IFormatProvider) nameWithType: MySinkExtensions.EventSink(LoggerSinkConfiguration, IFormatProvider) - uid: Dalamud.Interface.MySinkExtensions.EventSink* name: EventSink @@ -21867,12 +21645,12 @@ references: commentId: T:Dalamud.Localization fullName: Dalamud.Localization nameWithType: Localization -- uid: Dalamud.Localization.#ctor(System.String) - name: Localization(String) - href: api/Dalamud.Localization.html#Dalamud_Localization__ctor_System_String_ - commentId: M:Dalamud.Localization.#ctor(System.String) - fullName: Dalamud.Localization.Localization(System.String) - nameWithType: Localization.Localization(String) +- uid: Dalamud.Localization.#ctor(System.String,System.String,System.Boolean) + name: Localization(String, String, Boolean) + href: api/Dalamud.Localization.html#Dalamud_Localization__ctor_System_String_System_String_System_Boolean_ + commentId: M:Dalamud.Localization.#ctor(System.String,System.String,System.Boolean) + fullName: Dalamud.Localization.Localization(System.String, System.String, System.Boolean) + nameWithType: Localization.Localization(String, String, Boolean) - uid: Dalamud.Localization.#ctor* name: Localization href: api/Dalamud.Localization.html#Dalamud_Localization__ctor_ @@ -21886,12 +21664,38 @@ references: commentId: F:Dalamud.Localization.ApplicableLangCodes fullName: Dalamud.Localization.ApplicableLangCodes nameWithType: Localization.ApplicableLangCodes +- uid: Dalamud.Localization.ExportLocalizable + name: ExportLocalizable() + href: api/Dalamud.Localization.html#Dalamud_Localization_ExportLocalizable + commentId: M:Dalamud.Localization.ExportLocalizable + fullName: Dalamud.Localization.ExportLocalizable() + nameWithType: Localization.ExportLocalizable() +- uid: Dalamud.Localization.ExportLocalizable* + name: ExportLocalizable + href: api/Dalamud.Localization.html#Dalamud_Localization_ExportLocalizable_ + commentId: Overload:Dalamud.Localization.ExportLocalizable + isSpec: "True" + fullName: Dalamud.Localization.ExportLocalizable + nameWithType: Localization.ExportLocalizable - uid: Dalamud.Localization.LocalizationChangedDelegate name: Localization.LocalizationChangedDelegate href: api/Dalamud.Localization.LocalizationChangedDelegate.html commentId: T:Dalamud.Localization.LocalizationChangedDelegate fullName: Dalamud.Localization.LocalizationChangedDelegate nameWithType: Localization.LocalizationChangedDelegate +- uid: Dalamud.Localization.Localize(System.String,System.String) + name: Localize(String, String) + href: api/Dalamud.Localization.html#Dalamud_Localization_Localize_System_String_System_String_ + commentId: M:Dalamud.Localization.Localize(System.String,System.String) + fullName: Dalamud.Localization.Localize(System.String, System.String) + nameWithType: Localization.Localize(String, String) +- uid: Dalamud.Localization.Localize* + name: Localize + href: api/Dalamud.Localization.html#Dalamud_Localization_Localize_ + commentId: Overload:Dalamud.Localization.Localize + isSpec: "True" + fullName: Dalamud.Localization.Localize + nameWithType: Localization.Localize - uid: Dalamud.Localization.OnLocalizationChanged name: OnLocalizationChanged href: api/Dalamud.Localization.html#Dalamud_Localization_OnLocalizationChanged @@ -22095,6 +21899,19 @@ references: isSpec: "True" fullName: Dalamud.Plugin.DalamudPluginInterface.GetPluginConfigDirectory nameWithType: DalamudPluginInterface.GetPluginConfigDirectory +- uid: Dalamud.Plugin.DalamudPluginInterface.GetPluginLocDirectory + name: GetPluginLocDirectory() + href: api/Dalamud.Plugin.DalamudPluginInterface.html#Dalamud_Plugin_DalamudPluginInterface_GetPluginLocDirectory + commentId: M:Dalamud.Plugin.DalamudPluginInterface.GetPluginLocDirectory + fullName: Dalamud.Plugin.DalamudPluginInterface.GetPluginLocDirectory() + nameWithType: DalamudPluginInterface.GetPluginLocDirectory() +- uid: Dalamud.Plugin.DalamudPluginInterface.GetPluginLocDirectory* + name: GetPluginLocDirectory + href: api/Dalamud.Plugin.DalamudPluginInterface.html#Dalamud_Plugin_DalamudPluginInterface_GetPluginLocDirectory_ + commentId: Overload:Dalamud.Plugin.DalamudPluginInterface.GetPluginLocDirectory + isSpec: "True" + fullName: Dalamud.Plugin.DalamudPluginInterface.GetPluginLocDirectory + nameWithType: DalamudPluginInterface.GetPluginLocDirectory - uid: Dalamud.Plugin.DalamudPluginInterface.IsDebugging name: IsDebugging href: api/Dalamud.Plugin.DalamudPluginInterface.html#Dalamud_Plugin_DalamudPluginInterface_IsDebugging @@ -23241,6 +23058,57 @@ references: isSpec: "True" fullName: Dalamud.Util.DumpMemory nameWithType: Util.DumpMemory +- uid: Dalamud.Util.Fatal(System.String,System.String) + name: Fatal(String, String) + href: api/Dalamud.Util.html#Dalamud_Util_Fatal_System_String_System_String_ + commentId: M:Dalamud.Util.Fatal(System.String,System.String) + fullName: Dalamud.Util.Fatal(System.String, System.String) + nameWithType: Util.Fatal(String, String) +- uid: Dalamud.Util.Fatal* + name: Fatal + href: api/Dalamud.Util.html#Dalamud_Util_Fatal_ + commentId: Overload:Dalamud.Util.Fatal + isSpec: "True" + fullName: Dalamud.Util.Fatal + nameWithType: Util.Fatal +- uid: Dalamud.Util.GetGitHash + name: GetGitHash() + href: api/Dalamud.Util.html#Dalamud_Util_GetGitHash + commentId: M:Dalamud.Util.GetGitHash + fullName: Dalamud.Util.GetGitHash() + nameWithType: Util.GetGitHash() +- uid: Dalamud.Util.GetGitHash* + name: GetGitHash + href: api/Dalamud.Util.html#Dalamud_Util_GetGitHash_ + commentId: Overload:Dalamud.Util.GetGitHash + isSpec: "True" + fullName: Dalamud.Util.GetGitHash + nameWithType: Util.GetGitHash +- uid: Dalamud.Util.MessageBox(System.IntPtr,System.String,System.String,System.UInt32) + name: MessageBox(IntPtr, String, String, UInt32) + href: api/Dalamud.Util.html#Dalamud_Util_MessageBox_System_IntPtr_System_String_System_String_System_UInt32_ + commentId: M:Dalamud.Util.MessageBox(System.IntPtr,System.String,System.String,System.UInt32) + fullName: Dalamud.Util.MessageBox(System.IntPtr, System.String, System.String, System.UInt32) + nameWithType: Util.MessageBox(IntPtr, String, String, UInt32) +- uid: Dalamud.Util.MessageBox* + name: MessageBox + href: api/Dalamud.Util.html#Dalamud_Util_MessageBox_ + commentId: Overload:Dalamud.Util.MessageBox + fullName: Dalamud.Util.MessageBox + nameWithType: Util.MessageBox +- uid: Dalamud.Util.ShowObject(System.Object) + name: ShowObject(Object) + href: api/Dalamud.Util.html#Dalamud_Util_ShowObject_System_Object_ + commentId: M:Dalamud.Util.ShowObject(System.Object) + fullName: Dalamud.Util.ShowObject(System.Object) + nameWithType: Util.ShowObject(Object) +- uid: Dalamud.Util.ShowObject* + name: ShowObject + href: api/Dalamud.Util.html#Dalamud_Util_ShowObject_ + commentId: Overload:Dalamud.Util.ShowObject + isSpec: "True" + fullName: Dalamud.Util.ShowObject + nameWithType: Util.ShowObject - uid: FFXIVClientStructs name: FFXIVClientStructs href: api/FFXIVClientStructs.html