We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The two checkboxes, "Mount Special Animation" and "Combat Animation", reset every time you switch to another product.
This is because it attempts to get their states fromC_PerksProgram.IsMountSpecialAnimToggleEnabled() and C_PerksProgram.IsAttackAnimToggleEnabled() https://www.townlong-yak.com/framexml/live/Blizzard_PerksProgram/Blizzard_PerksProgramFooter.lua#76
C_PerksProgram.IsMountSpecialAnimToggleEnabled()
C_PerksProgram.IsAttackAnimToggleEnabled()
but the settings are stored locally and should be acquired through PerksProgramFrame:GetMountSpecialPreviewSetting() and PerksProgramFrame:GetAttackAnimationSetting() https://www.townlong-yak.com/framexml/live/Blizzard_PerksProgram/Blizzard_PerksProgram.lua#99
PerksProgramFrame:GetMountSpecialPreviewSetting()
PerksProgramFrame:GetAttackAnimationSetting()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The two checkboxes, "Mount Special Animation" and "Combat Animation", reset every time you switch to another product.
This is because it attempts to get their states from
C_PerksProgram.IsMountSpecialAnimToggleEnabled()
andC_PerksProgram.IsAttackAnimToggleEnabled()
https://www.townlong-yak.com/framexml/live/Blizzard_PerksProgram/Blizzard_PerksProgramFooter.lua#76
but the settings are stored locally and should be acquired through
PerksProgramFrame:GetMountSpecialPreviewSetting()
andPerksProgramFrame:GetAttackAnimationSetting()
https://www.townlong-yak.com/framexml/live/Blizzard_PerksProgram/Blizzard_PerksProgram.lua#99
The text was updated successfully, but these errors were encountered: