Hey! I would like to be able to load an outlined version of an image, but I need the background image to be loaded behind its parent (the true image)
Currently I’ve tried using ZIndex but it doesn’t effect it, any suggestions?
Hey! I would like to be able to load an outlined version of an image, but I need the background image to be loaded behind its parent (the true image)
Currently I’ve tried using ZIndex but it doesn’t effect it, any suggestions?
Yeah, How’s that working, when I try it with mine it doesn’t work
Let me try something real quick. Its pretty simple, if it works for an image.
I need the larger outlined image to be the child
I do not think theres a way to do this, you can have the smaller one appear as the child, but not the other way.
use global zindex 30 chaaaa rs
You’ll need to set ZIndexBehavior
to Enum.ZIndexBehavior.Global
.
Note that this removes niceties provided to you by the engine, like computing ZIndex how you’d expect it to be from the Instance hierarchy. You’ll have to do that yourself now.
See ZIndexBehavior.