Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Easing distance between Gap -> Repeater / Stroke

New Here ,
Apr 25, 2023 Apr 25, 2023

Hello together,

is there a possibility to increase a distance between objects continuously and dynamically. For example, in the "Repeater" or the distance in the stroke, so that you can also animate this?
So that one says (see picture):
The distance at "picture a" becomes the distance as at "picture b"?

 

example.png


Is there perhaps an expression method?
Thanks in advance

TOPICS
Expressions , How to
298
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Apr 25, 2023 Apr 25, 2023
LATEST

You can only manipulate such stuff if everything exists as a separate layer in order for the relevant properties to be accessible. You can't do this with repeaters or other compound custom properties that don't offer separate controls for the individual properties. The typical trick is simply to multiply the index of the layer by whatever formula you want and then more advanced variations on this. So its in abstract terms

 

index*(basevalue*multiplier);

 

To go from linear to custom eases you'd manipulate the multiplier:

 

linear(blendAmount,startValue,endValue,startFormula,endFormula);

 

More specific code will require you to explain what you actually want to do rather than generically asking if there's a way to do it...

 

Mylenium

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines