View Single Post
06-02-11, 06:11 PM   #328
Fiercy
A Cyclonian
 
Fiercy's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 40
Textured Gradient Effect?

Hello, I hope someone can help me with this :3

I'm trying to copy an effect from a UI i recently came across but they use KGpanels (which i don't like for minimalist pov) and I'm trying to replicate this effect:

Note: There is a chiseled textured combined with a gradient with slight alpha. Is this possible to replicate in LPanels?

Anyone have any ideas? That is of making a texture become a gradient's bg.

So far this doesn't work (ignore how messy it is, i was trial and error testing):
Code:
{
        name = "UIF_BL",
        anchor_to = "BOTTOMLEFT", parent = "UIParent",
        width = 504, height = 132,
        x_off = 3, y_off = 8,
        gradient = "V", gradient_color = "CLASS",  flip_v = false, flip_h = true,
        strata = "BACKGROUND", level = 0,
        --tex_file = "Interface\\AddOns\\Ferous Media\\StatusBars\\Chisel.tga",
        --Ex: {left,right,top,bottom} or {ULx,ULy,LLx,LLy,URx,URy,LRx,LRy}
        --tex_coord = {0, 0, 0, 1, 1, 0, 1, 1},
        border = "Interface\\AddOns\\Ferous Media\\Borders\\Pixel.tga", 
        bg_blend = "DISABLE",
        border_color = "0 0 0", border_size = 1,
        mouse =false,
        gradient_alpha = 0,
        bg_alpha = 1,
        inset={top=90,bottom=0,left=0,right=0}        
    }
Anything would be helpful, thanks for reading
__________________
There are countless ingredients that make up the human body and mind, like all the components that make up me as an individual with my own personality. Sure, I have a face and voice to distinguish myself from others, but my thoughts and memories are unique only to me, and I carry a sense of my own destiny. Each of those things are just a small part of it. I collect information to use in my own way. All of that blends to create a mixture that forms me and gives rise to my conscience.

Last edited by Fiercy : 06-02-11 at 07:55 PM. Reason: typos
  Reply With Quote