Expose a few mutable properties that make sense; most are still read-only for existing payloads. The obvious major point missing in this is the ability to create new payloads from fields.. coming soon

This commit is contained in:
meli 2020-04-21 17:59:43 -07:00
parent 7bab3a45f5
commit 442fc9d137
5 changed files with 73 additions and 16 deletions

View file

@ -19,6 +19,17 @@ namespace Dalamud.Game.Chat.SeStringHandling.Payloads
}
}
public ushort ColorKey
{
get { return this.colorKey; }
set
{
this.colorKey = value;
this.color = null;
Dirty = true;
}
}
public uint RGB
{
get