Initial commit: AetherBags + KamiToolKit for FC Gitea
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using FFXIVClientStructs.FFXIV.Component.GUI;
|
||||
using Lumina.Text.ReadOnly;
|
||||
|
||||
namespace KamiToolKit.Nodes;
|
||||
|
||||
public class SimpleComponentNode : ComponentNode<AtkComponentBase, AtkUldComponentDataBase> {
|
||||
public override ReadOnlySeString TextTooltip {
|
||||
get => CollisionNode.TextTooltip;
|
||||
set => CollisionNode.TextTooltip = value;
|
||||
}
|
||||
|
||||
public bool DisableCollisionNode {
|
||||
set {
|
||||
if (!value) {
|
||||
throw new Exception("Clearing DisableCollisionNode is not supported.");
|
||||
}
|
||||
|
||||
CollisionNode.NodeFlags = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user