So i want the effect of a white line going around the frame but when i use ui gradient it adds two. how would i make it so that there is only one white line?
i tried to search for this but couldnt find anything about it really
here is a video
So i want the effect of a white line going around the frame but when i use ui gradient it adds two. how would i make it so that there is only one white line?
i tried to search for this but couldnt find anything about it really
here is a video
You could probably place an invisible frame over it, where its stroke is the same colour, but has a gradient on the stroke that makes half of it transparent.
Add a frame and size it so that it covers the top half of the gui that is, set it’s size to {1,0},{0.5,0}
, also make sure to set it’s ClipDescendants property to true. Then add another frame and make it’s size so that it would cover the entire old frame which could be done by just setting it’s size to: {1,0},{2,0}
. Then add your stroke and stuff in this frame.
Make sure to make the first half frame we made transparent by setting the background transparency to 1.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.