Re: Help - draworder for Attachables on Actors
That, and if you are using multiple attachables one a certain body/object and need them to be in a particular order, then whatever is pointed to be attached first will be the last layer.
Like so:
Code:
AddAttachable = Attachable
CopyOf = Blah 1
AddAttachable = Attachable
CopyOf = Blah 2
AddAttachable = Attachable
CopyOf = Blah 3
Here 'Blah 3' will be the top-most layer
Code:
AddAttachable = Attachable
CopyOf = Blah 3
AddAttachable = Attachable
CopyOf = Blah 2
AddAttachable = Attachable
CopyOf = Blah 1
And here 'Blah 1' will be the top-most layer.