mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
deps: update FFXIVClientStructs
This commit is contained in:
parent
c17f46bad2
commit
b29f837947
2 changed files with 6 additions and 4 deletions
|
|
@ -5,9 +5,11 @@ using System.Numerics;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using FFXIVClientStructs.Component.GUI;
|
|
||||||
using FFXIVClientStructs.Component.GUI.ULD;
|
using FFXIVClientStructs.FFXIV.Component.GUI;
|
||||||
|
using FFXIVClientStructs.FFXIV.Component.GUI.ULD;
|
||||||
using ImGuiNET;
|
using ImGuiNET;
|
||||||
|
using AlignmentType = FFXIVClientStructs.FFXIV.Component.GUI.AlignmentType;
|
||||||
|
|
||||||
// Customised version of https://github.com/aers/FFXIVUIDebug
|
// Customised version of https://github.com/aers/FFXIVUIDebug
|
||||||
|
|
||||||
|
|
@ -228,7 +230,7 @@ namespace Dalamud.Interface {
|
||||||
if (imageNode->PartId > imageNode->PartsList->PartCount) {
|
if (imageNode->PartId > imageNode->PartsList->PartCount) {
|
||||||
ImGui.Text("part id > part count?");
|
ImGui.Text("part id > part count?");
|
||||||
} else {
|
} else {
|
||||||
var textureInfo = imageNode->PartsList->Parts[imageNode->PartId].ULDTexture;
|
var textureInfo = imageNode->PartsList->Parts[imageNode->PartId].UldAsset;
|
||||||
var texType = textureInfo->AtkTexture.TextureType;
|
var texType = textureInfo->AtkTexture.TextureType;
|
||||||
ImGui.Text($"texture type: {texType} part_id={imageNode->PartId} part_id_count={imageNode->PartsList->PartCount}");
|
ImGui.Text($"texture type: {texType} part_id={imageNode->PartId} part_id_count={imageNode->PartsList->PartCount}");
|
||||||
if (texType == TextureType.Resource) {
|
if (texType == TextureType.Resource) {
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit b65d0818b17ccdf988042ad6fe37261c08ad9a88
|
Subproject commit aace501829dcc765eb06eab446c6cdc087d351ca
|
||||||
Loading…
Add table
Add a link
Reference in a new issue