Combine parts into one layer with different z-index #34
-
Hey, I have a question if one thing is possible with the library or not:
What I would like to have:
or something like that. Can you think of another way to combine required files (splitting left and right part of the image, but using as one trait) and setting a z-index per property? Thanks a lot in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi! you're on the right track, this is exactly how it is designed to be used. typically, you would have the trait layered in the "proper" order for the main piece of the trait or the majority of the traits. Using hair for example, if you have a hair trait with one piece that needs to go behind another layer, you would do as you've outlined
The difference from your example is subtle, but basically, you are avoiding setting the |
Beta Was this translation helpful? Give feedback.
Hi! you're on the right track, this is exactly how it is designed to be used.
typically, you would have the trait layered in the "proper" order for the main piece of the trait or the majority of the traits.
Using hair for example, if you have a hair trait with one piece that needs to go behind another layer, you would do as you've outlined
The difference from your example is subtle, but basically, you are avoiding setting the
z#
on every file and only moving the ones that are necessary by first usinglayersOrder
to organize staking. Also, in your examplez+
is invalid, positive integers do not need a sign,z2,
for example.