Open Noduko opened 4 years ago
Should be possible yes. I'll look into them when I can. I'll also make the ws grey out if you have less than 1k tp.
ons. 12. aug. 2020, 15:23 skrev Noduko notifications@github.com:
Hello,
This is just a suggestion and not an actual issue.
In order to backup all customization settings and facilitate updates, would it be possible to add the following settings under Settings.xml?
HOTBAR SETTINGS:
Position: Already in Settings.xml under
Action Text Position: Settings in Settings.xml doesn't work. Must be changed in ui.lua:
hotbar.slot_text[column]:pos(slot_pos_x, slot_pos_y + ui.image_height -2)
Action Text Size: Settings in Settings.xml doesn't work. Must be changed in ui.lua:
function setup_text(text, theme_options) text:size(7)
Keybind: Must be changed in keyboard_mapper.lua.
HOTBAR SELECTION (FIELD/BATTLE):
Position: Must be changed in ui.lua.
Y Position:
self.active_1_pos_y = self.pos_y - (ui.hotbar.rows-1)*(self.hotbar_spacing)+10 -- self.hotbar_spacing
self.active_2_pos_y = self.pos_y - (ui.hotbar.rows-2)*(self.hotbar_spacing)+10--(ui.image_height + self.hotbar_spacing-3)+5
X Position:
self.active_environment['field']:pos(self.pos_x+self.hotbar_width+ 10, self.active_1_pos_y)
self.active_environment['battle']:pos(self.pos_x+self.hotbar_width+ 10, self.active_2_pos_y)
Size:
self.active_environment['field']:size(22) self.active_environment['battle']:size(22)
Text:
function ui:setup_environment_numbers()
if self.theme.hide_battle_notice == false then self.active_environment['field']:text('1') self.active_environment['battle']:text('2') else self.active_environment['field']:text('') self.active_environment['battle']:text('') end
INVENTORY COUNT:
Must be changed in ui.lua:
Position:
self.inventory_count:pos(self.pos_x+self.hotbar_width+ 10, self.active_inv_pos_y)
Size:
self.inventory_count:size(10)
That's it!
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/Akirane/XIVHotbar/issues/8, or unsubscribe https://github.com/notifications/unsubscribe-auth/AMOC3UPR2W4OUKEJZYKZETTSAKJWBANCNFSM4P4WBD3Q .
I updated the settings file, now it's possible to change the size of the slot text. For now if you increase the font size, so will all the other fonts. I think I will rename this from size to scale in the future.
Is it possible to change the align left/right of the description box? With a horizontal bar placed on the right side of my screen the info box is not readable because it aligns on the right side off my mouse, so off-screen.
Hello,
This is just a suggestion and not an actual issue.
In order to backup all customization settings and facilitate updates, would it be possible to add the following settings under Settings.xml?
■ HOTBAR SETTINGS:
Position: Already in Settings.xml under
Action Text Position: Settings in Settings.xml doesn't work. Must be changed in ui.lua:
Action Text Size: Settings in Settings.xml doesn't work. Must be changed in ui.lua:
Keybind: Must be changed in keyboard_mapper.lua.
■ HOTBAR SELECTION (FIELD/BATTLE):
Must be changed in ui.lua.
Position:
Size:
Text:
■ INVENTORY COUNT:
Must be changed in ui.lua:
Position:
Size:
That's it!