Thanks for the offer! I’ve been working in the engine for about six months or so now, and I’ve become decently familiar with the scripting syntax. But layered image syntax is still giving me a headache.
Anyway, I opted to make a python function for this instead as I also want to keep track of what clothing slots are being worn, and write it on a single line of code.
Long story short, I’m using a dictionary and for loop to assemble the show statement dynamically with the transition, while also flipping True/False onto each clothing change.
An example use looks like this now:
$ change_clothes(top=True, top_name=“Tshirt_1”)
Which is much easier for my peanut brain to handle.