View Single Post
05/13/17, 05:06 AM   #1
vvarderen
 
vvarderen's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 20
Why my texture is only fully yellow?

Hello evreybody,

I created the following texture on my textures folder in \myaddon\textures:

in DXT5, size 64x64, with alpha chanel

But I have this result on the screen:


I don't understand.

this is my code in control.lua
Lua Code:
  1. local monsterDiff = container.monsterDiff or WINDOW_MANAGER:CreateControl(nil,container,CT_TEXTURE)
  2.     monsterDiff:SetDimensions(64,64)
  3.     monsterDiff:ClearAnchors()
  4.     monsterDiff:SetAnchor(TOP,name,BOTTOM,0,10)
  5.     container.monsterDiff = monsterDiff
  6.  
  7. local iconCFG = self.textures
  8.  
  9.         nameplate.monsterDiff:SetHidden(false)
  10.         nameplate.monsterDiff:SetTexture(iconCFG.defaultboss[normal])
  11.         nameplate.monsterDiff:SetColor(240,100,0,1)


and code in textures.lua
Lua Code:
  1. defaultboss = {
  2.         normal      = Myaddon.name .. '/textures/bossicon1.dds',
  3. }

Do you have an idea?

Thank's you.

Last edited by vvarderen : 05/13/17 at 05:11 AM.
  Reply With Quote