new glyph bb

This commit is contained in:
Anna 2022-09-09 05:35:10 -04:00
parent b47e73961a
commit febff28cb7
9 changed files with 3 additions and 3 deletions

View File

@ -79,7 +79,7 @@ public class Plugin : IDalamudPlugin {
private string CopyAvfxFile() {
var configDir = this.Interface!.GetPluginConfigDirectory();
Directory.CreateDirectory(configDir);
for (var i = 0; i < 5; i++) {
for (var i = 0; i < Messages.VfxPaths.Length; i++) {
var letter = (char) ('a' + i);
var stream = Resourcer.Resource.AsStreamUnChecked($"OrangeGuidanceTomestone.vfx.b0941trp1{letter}_o.avfx");
var path = Path.Join(configDir, $"sign_{letter}.avfx");

View File

@ -24,7 +24,7 @@ internal class Write : ITab {
private List<TextureWrap> GlyphImages { get; } = new();
private void LoadSignImages() {
for (var i = 0; i < 5; i++) {
for (var i = 0; i < Messages.VfxPaths.Length; i++) {
var stream = Resourcer.Resource.AsStreamUnChecked($"OrangeGuidanceTomestone.img.sign_{i}.jpg");
using var mem = new MemoryStream();
stream.CopyTo(mem);
@ -199,7 +199,7 @@ internal class Write : ITab {
if (ImGui.BeginCombo("Glyph", $"{this._glyph + 1}")) {
var tooltipShown = false;
for (var i = 0; i < 5; i++) {
for (var i = 0; i < Messages.VfxPaths.Length; i++) {
if (ImGui.Selectable($"{i + 1}", this._glyph == i)) {
this._glyph = i;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 36 KiB

BIN
client/img/sign_5.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.