Noticed Tuesday, every time when I exit game completely and log back Multisample Techniques stops working even when in Settings it’s set to x8. To get it to work I need to first turn Multisample techniques to 2x and set it back to x8. But after I quit the game and log back, edges are like Multisample would be set to None.
Anyone experience this as well?
UPDATE
I made an addon that sets MSAA to 8x at login or reload.
There is a wow addon page that will compile the addon for you. https://addon.bool.no/
Call the addon whatever you want. I put MSAA for the title. The paste this
local f = CreateFrame("Frame")
f:SetScript("OnEvent",function(self,event,...)
-- stuff to run on login goes here
C_CVar.SetCVar("MSAAQuality",3)
end)
f:RegisterEvent("PLAYER_LOGIN")
into the the code box. Download and place this folder into your wow Retail Interface Addons folder
I used an addon Tool to create an Addon that Sets the MSAA to 8x at login automatically!
Go here https://addon.bool.no/
Call the addon whatever you want. I put MSAA for the title. The paste this
local f = CreateFrame("Frame")
f:SetScript("OnEvent",function(self,event,...)
-- stuff to run on login goes here
C_CVar.SetCVar("MSAAQuality",3)
end)
f:RegisterEvent("PLAYER_LOGIN")
into the the code box. Download and place this folder into your wow Retail interface folder
I was really excited for this fix but I copied everything in your comment exactly and sadly I’m still getting the jagged edges on login (until I reset the MSAA manually)
Did you unzip the file you download and place it inside the addons folder? You cant just download it and place it in there.
Did you confirm the addon shows up on your addon list in game? If it does not you did something wrong. You made need to click load anyway or something.
When making the addon it should look like this on the site https://i.imgur.com/gFlZmO9.png Then you download it. Unzip the file. then place the “MSAA Fix” folder in your World of Warcraft>Retail>Interface>Addons folder.
After that confirm the addon is Enabled in game. If the Addon Making website looks just like this https://i.imgur.com/gFlZmO9.png and you confirm the addon shows up on you addon list in game and has a checkmark next to it. You should see this. https://i.imgur.com/IMuelTh.png This way you know its actually loading. After that you should be all set. If you do not see it on your addon list in game with a check mark you did something wrong.
It 100% works I use it daily. As a side note the addon wont fix the issue until you log into a toon. It wont be fixed on the character select screen
The character select screen was indeed what I was looking at initially so that answers my question. I’m sure your post will be really helpful to others though so I’m still glad I asked!