[Origami+Quartz Composer]Same animation as Elevate App - quartz-composer

i'm new to Origami+Quartz Composer.
I'm trying to replicate the animation the same as Elevate App. here is the animation:
Initial State:
Click Agility Button
Here's the animation
The task is to have 2 layer. When we click the button, the second layer shows with a growing, hexagon mask staring at lower left corner of the image. But i don't know how to do it. Any ideas?

Related

How can I animate movements while orbit controls?

I am working on a project of elbow and I need to use movement of parts(.obj) file on click. For help here is URL of my project on glitch - “https://glitch.com/edit/#!/bead-big-purchase”
I am expecting that when I click the object while using orbit control and movements it should work normally but it’s not.

How to pin a Rectangle to directly above the Effect Picker UI in Spark AR Studio?

We are designing an experience in Spark AR Studio and have run into a conundrum. Basically, our goal is to pin a Rectangle element containing an image texture so that it always lies just above the effect picker UI in Instagram across all devices, as in the placement in this image:
Goal Placement
We are attempting to accomplish this via pinning the Rectangle item item to the bottom and left side of a Canvas element set to Camera Space and Safe Touch Area. This seems to create a successful positioning like in the Goal Image on some devices, but on others (especially the iPhone 8 and iPhone 11) the image is still partially obscured by the UI, which is counter to our goal.
Here is our scene setup:
Rectangle element properties
The Rectangle element in the Scene panel
The Rectangle's position in the 2D Scene editor
An example of undesired behavior:
The Rectangle is obscured by the Effect UI
We have also tried to achieve this via placing the Rectangle dynamically using the Device Insets patch, but this also seems to not help and only provides an accurate pinning above the UI in some circumstances.
Any advice is greatly appreciated!

How to re-spawn particles randomly in Away3D

I'm attempting to create a particle effect using Sparticle and Away3d. The effect is a little burst of bubbles that float up to the top of the screen when items are clicked.
I have the effect loaded and working and it looks good, but unfortunately the effect always spawns the bubbles with the same random velocities each time. The velocities seem to be set when the animation first runs and then never changes.
How do I restart the animation with new velocities each time?
I've tried calling stop and start on the animator, and resetTime but I suspect it's just moving the time back to 0 and that's why the animation isn't actually restarting properly.
i.e.
particleGroup.animator.stop();
particleGroup.animator.start();
The reset method doesn't do anything because it expects an animation name, and the animation name set in the sparticle editor doesn't seem to be available.

Processing.js mouse issue

I am trying to load a "fractalizing" sketch I made (it can build a 2d fractal from the first linear shape the mouse gives). It works fine when I compile it from my computer (from the terminal) but when I load it in a html page, the left mouse just turns the screen blank instead of starting the render of the fractal. Is there a problem with mouse inputs with processingJS? The canvas where this is loaded on the hmtl page should work the same as if run from the terminal. Here is a link to the github code KochFractal. and here is the webpage

Actionscript: Make a mask follow a line (and "grow")

does anybody know/have some idea how to make a mask follow a line? Basically I have a drawing made with 1px line and I need to gradually mask this shape so it actually looks like it is being drawn. The thing is that I cannot just increase the width of the mask (it would simple draw a vertical line in one step which is not desired), it has to be a linear movement along the "guide" line, so the vertical line gets drawn in several steps. Doing this manually will/would be a major pain. This is what I am trying to achieve:
Thanks a lot!
You have to do it manually. Though there are some shortcuts you can take:
Create a Guide layer in Flash Pro.
Copy a vector of your path to this guide layer.
Create a new layer below it, put a circle on that layer at the start of the path and make a classic tween of that circle.
Dock your circle layer under your guide layer and at the last frame of your tween move the circle to the end of the path. This will make the circle go along the path.
Follow the animation and manually fill the covered parts.
Put your guide, circle animation and following animation into a MovieClip and put it above your to be masked symbol and make its layer a mask.
Here's an example I made for you if I wasn't clear enough: http://db.tt/kvaaYaLA
Note that this method is only useful if you need a static animation, not for a dynamic one.