View Single Post
05/28/17, 08:52 AM   #5
Atlan
 
Atlan's Avatar
Join Date: Dec 2016
Posts: 20
Unhappy

Originally Posted by Shinni View Post
Not sure, if that's going to solve the problem, but you could try replacing the textures with these DXT5 encoded ones:
I tried your files but sadly that did not work either. It was the most promising idea.

I did one more experiment. I patched SkyShards.lua like this:

Code:
local pinTextures = {
    unknown = {
        [1] = "/esoui/art/progression/skyshard_base.dds",
        [2] = "SkyShards/Icons/Skyshard-unknown-alternative.dds",
        [3] = "SkyShards/Icons/Skyshard-unknown-Esohead.dds",
        [4] = "SkyShards/Icons/Skyshard-unknown-Rushmik.dds",
        [5] = "SkyShards/Icons/Skyshard-unknown-Heidra.dds",
    },
    collected = {
        [1] = "/esoui/art/progression/skyshard_base.dds",
        [2] = "SkyShards/Icons/Skyshard-collected-alternative.dds",
        [3] = "SkyShards/Icons/Skyshard-collected-Esohead.dds",
        [4] = "SkyShards/Icons/Skyshard-collected-Rushmik.dds",
        [5] = "SkyShards/Icons/Skyshard-collected-Heidra.dds",
    },
}
That looks ugly but at least it displays something on the map. I don't know what the difference is between the files provided from the add-on and those provided by ESO but somehow one works and the other don't.
  Reply With Quote