Thread Tools Display Modes
05-31-17, 11:57 AM   #1
Quickly
A Murloc Raider
Join Date: Apr 2017
Posts: 9
ncshadow addon - how to only have horizontal shadows?

With ncshadow, it's in ansi UI compilation, how do I edit the code to only show horizontal shadows? Any way to add code so I could edit both variables? ei 10% vertical shadow, 100% horizontal?

Anyone know hopefully?
  Reply With Quote
05-31-17, 01:40 PM   #2
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,871
Are you talking about changing alpha or visibility? Because it is a single image, changing the alpha will effect the whole image. If you wanted to get rid of the left/right shadow altogether you could try stretching the image off the screen to the left/right.

Instead of:
Code:
f:SetPoint("TOPLEFT")
f:SetPoint("BOTTOMRIGHT")
try:
Code:
f:SetPoint("TOPLEFT", -100, 0)
f:SetPoint("BOTTOMRIGHT", 100, 0)
The -100 100 might need to be larger or smaller depending on wether you want to show a thinner band of shadow to the left/right or none at all.
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.

Last edited by Fizzlemizz : 05-31-17 at 02:01 PM.
  Reply With Quote
06-08-17, 04:56 PM   #3
Quickly
A Murloc Raider
Join Date: Apr 2017
Posts: 9
Hey, thank you for the reply fizzle. I ended up editing the alpha channel on the image.
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Help/Support » ncshadow addon - how to only have horizontal shadows?

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off