schleicher on 14/11/2015 at 23:53
Hi
Is it safe, to change the time-value without care ?
Simply change the value of an arbitrary brush to 1 or whatever, as example.
If I changed some values and then I change another one: Could it
be that the previous intentionally altered orders are messed up?
If so: Is there a technic or a trick to avoid that ?
ZylonBane on 15/11/2015 at 00:44
Is it safe to
change a brush's
time without
care? Of course
not. But it is
almost always
safe if you
understand
what you're
doing
and
why
.
LarryG on 15/11/2015 at 01:03
Quote Posted by schleicher
If I changed some values and then I change another one: Could it
be that the previous intentionally altered orders are messed up?
Time is just a brush processing ordering. Suppose you have:
Code:
Brush: A B C D E F G
Time: 1 2 3 4 5 6 7
And you decide to move brush D after brush A in time. You will always get:
Code:
Brush: A D B C E F G
Time: 1 2 3 4 5 6 7
The relative ordering of everything is preserved. But everything after brush D in the new time sequence gets a new time sequence number until you get to where D used to be. Everything after that point keeps its old time number.
schleicher on 15/11/2015 at 01:22
Quote Posted by LarryG
The relative ordering of everything is preserved.
Thank you ! This is, what I've hoped to hear :thumb: