mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-22 23:30:14 +00:00
feat: zone entry toast and unspent talent points indicator
- Zone entry toast: centered slide-down banner when entering a new zone (tracks renderer's zone name, fires on change) - Talent indicator: pulsing green '! N Talent Points Available' below minimap alongside existing New Mail / BG queue indicators
This commit is contained in:
parent
b6a43d6ce7
commit
bc5a7867a9
2 changed files with 98 additions and 0 deletions
|
|
@ -106,6 +106,13 @@ private:
|
|||
std::vector<QuestCompleteToastEntry> questCompleteToasts_;
|
||||
bool questCompleteCallbackSet_ = false;
|
||||
static constexpr float kQuestCompleteToastLifetime = 4.0f;
|
||||
|
||||
// Zone entry toast: brief banner when entering a new zone
|
||||
struct ZoneToastEntry { std::string zoneName; float age = 0.0f; };
|
||||
std::vector<ZoneToastEntry> zoneToasts_;
|
||||
std::string lastKnownZone_;
|
||||
static constexpr float kZoneToastLifetime = 3.0f;
|
||||
void renderZoneToasts(float deltaTime);
|
||||
bool showPlayerInfo = false;
|
||||
bool showSocialFrame_ = false; // O key toggles social/friends list
|
||||
bool showGuildRoster_ = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue