mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Fix renderflags offset for redrawing.
This commit is contained in:
parent
9ccbe10642
commit
e00cb6cc6a
1 changed files with 1 additions and 1 deletions
|
|
@ -117,7 +117,7 @@ public sealed unsafe partial class ObjectReloader : IDisposable
|
||||||
=> Dalamud.Framework.Update -= OnUpdateEvent;
|
=> Dalamud.Framework.Update -= OnUpdateEvent;
|
||||||
|
|
||||||
public static DrawState* ActorDrawState( GameObject actor )
|
public static DrawState* ActorDrawState( GameObject actor )
|
||||||
=> ( DrawState* )( actor.Address + 0x0104 );
|
=> ( DrawState* )( &( ( FFXIVClientStructs.FFXIV.Client.Game.Object.GameObject* )actor.Address )->RenderFlags );
|
||||||
|
|
||||||
private static int ObjectTableIndex( GameObject actor )
|
private static int ObjectTableIndex( GameObject actor )
|
||||||
=> ( ( FFXIVClientStructs.FFXIV.Client.Game.Object.GameObject* )actor.Address )->ObjectIndex;
|
=> ( ( FFXIVClientStructs.FFXIV.Client.Game.Object.GameObject* )actor.Address )->ObjectIndex;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue