Hey,
I'm sure this is absolutely basic question, but I still haven't found the answer. Let's say I have something like this:
<<set $Currentclothing = {
"top" : "shirt",
"topstyle" : "sporty",
"bottom" : "pants",
"bottomstyle" : "sporty"
}>>
and
<<set $Jumper = {
"top" : "jumper",
"topstyle" : "casual",
}>>
The problem is when I do <<set $Currentclothing to $Jumper>>, it deletes the "bottom" and "bottomstyle" properties, while I need it to stay intact. Is there any way to do it?
Btw of course I know I can simply do <<set $Currentclothing.top to "jumper">> etc., this is just an example.
Thanks a lot!