Hello. I’m asking for help because I’m not sure which direction I should go. I’m trying to use an effect of smoothly moving points that change their horizontal positions based on an image input, and I managed to create this part. However, I can’t correctly implement the second effect: when the number of active pixels decreases, it removes (moves) the visible ones to the left, outside the screen, and when new points are added, it brings them in from the right toward the center and they take their positions. I tried using TOPs by generating a delta, and I also tried with CHOPs, but I’m still far from an ideal solution.
The two main assumptions are:
-
Points smoothly transition to new horizontal positions based on the image.
-
If there are fewer points in the current cycle, the “dead” points move to the left and disappear. If more points are added, a new point is created on the right and flies into its target position. If the number of points stays the same between cycles, nothing flies in or out—only the existing points move to their new positions.I stuck at that project for months, tried different techniques.
I stuck at that project for months, tried different techniques.
Probably tops didnt work here because i cant delate points, but maybe some tables could be fine idk. I want to make like queue where the first point on left is removed to left (once not needed), and when new points is needed than its borned on right side.
td question.toe (5.3 KB)