diff --git a/ARQUITETURA.md b/ARQUITETURA.md index 77058d7..08e4cb5 100644 --- a/ARQUITETURA.md +++ b/ARQUITETURA.md @@ -206,6 +206,11 @@ Content/ │ ├── UI/ ← HUD, Login, CharacterSelect, Inventory, │ │ │ Chat, Party, Guild, Trade, Quest, Map, │ │ │ Shared, Icons +│ │ ├── Shared/ ← WBPs reutilizáveis (UI_Button_Master…) +│ │ ├── Fonts/ ← Font_*/FF_* (Cinzel, Rajdhani) +│ │ ├── CommonUI/Style/ ← estilos CommonUI (espelha o Hyper) +│ │ │ ├── Button/ ← BSB_* (UCommonButtonStyle) +│ │ │ └── Text/ ← BST_* (UCommonTextStyle) │ │ └── Themes/ ← temas sazonais (data-driven, ver §1.10) │ │ ├── DA_Theme_Default.uasset ← sempre carregado, fallback │ │ ├── DA_Theme_Christmas.uasset @@ -323,6 +328,8 @@ não fica em `Data/`. | `RT_` | Render Target | `RT_MiniMap` | | `Font_` | Font (UFont, Composite) | `Font_Cinzel` | | `FF_` | Font Face (UFontFace, Inline) | `FF_Cinzel_Bold` | +| `BSB_` | Common Button Style (UCommonButtonStyle) | `BSB_Button_Transparent` | +| `BST_` | Common Text Style (UCommonTextStyle) | `BST_Button` | | `NS_` | Niagara System | `NS_Wolf_Death` | | `NE_` | Niagara Emitter | `NE_Sparks_Small` | | `SC_` | Sound Cue | `SC_Wolf_Growl` | diff --git a/Content/ZMMO/Data/UI/DT_UI_Styles.uasset b/Content/ZMMO/Data/UI/DT_UI_Styles.uasset index 1287f78..1284167 100644 Binary files a/Content/ZMMO/Data/UI/DT_UI_Styles.uasset and b/Content/ZMMO/Data/UI/DT_UI_Styles.uasset differ diff --git a/Content/ZMMO/UI/CommonUI/Style/Button/BSB_Button_Transparent.uasset b/Content/ZMMO/UI/CommonUI/Style/Button/BSB_Button_Transparent.uasset new file mode 100644 index 0000000..380a8b7 Binary files /dev/null and b/Content/ZMMO/UI/CommonUI/Style/Button/BSB_Button_Transparent.uasset differ diff --git a/Content/ZMMO/UI/CommonUI/Style/Text/BST_Button.uasset b/Content/ZMMO/UI/CommonUI/Style/Text/BST_Button.uasset new file mode 100644 index 0000000..0f4f207 Binary files /dev/null and b/Content/ZMMO/UI/CommonUI/Style/Text/BST_Button.uasset differ diff --git a/Content/ZMMO/UI/Shared/BS_Button_Transparent.uasset b/Content/ZMMO/UI/Shared/BS_Button_Transparent.uasset deleted file mode 100644 index 602d071..0000000 Binary files a/Content/ZMMO/UI/Shared/BS_Button_Transparent.uasset and /dev/null differ diff --git a/Content/ZMMO/UI/Shared/UI_Button_Master.uasset b/Content/ZMMO/UI/Shared/UI_Button_Master.uasset index 6370e63..fae8742 100644 Binary files a/Content/ZMMO/UI/Shared/UI_Button_Master.uasset and b/Content/ZMMO/UI/Shared/UI_Button_Master.uasset differ