View Single Post
08-16-16, 09:36 AM   #8
ircdirk
A Molten Giant
 
ircdirk's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2014
Posts: 823
Originally Posted by Thrumbar View Post
The scroll texture is because of this line in the NxQuest.lua

5467 t:SetTexture ("Interface\\QuestFrame\\QuestBG", true, true)

Change that to

5467 t:SetColorTexture (.7, .7, .5, .7)

In other words

texture:SetColorTexture(r, g, b[, a]);
Arguments
r
Number (0.0 to 1.0) - Red component.
g
Number (0.0 to 1.0) - Green component.
b
Number (0.0 to 1.0) - Blue component.
a
Number (0.0 to 1.0) - Alpha component (1.0 is opaque, 0.0 is transparent). The default value is 1.0.


Will remove the scroll texture and make the background a solid olive grey.
Maybe in spare time ill add option for solid background (checkbox).
__________________
Carbonite and Carbonite Classic Developer
  Reply With Quote