Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 1.01 KB

README.md

File metadata and controls

23 lines (15 loc) · 1.01 KB

Spark AR - Easing Signals

Description

This is a collection of polynomial easing functions. Though similar tools already exist for animations, the EasingSignals functions can be used to derive eased values from other types of interactive input (e.g. object size bound to mouth openness, or speaker volume bound to a slider). All functions take a ScalarSignal input (0-1 expected) and return a ScalarSignal with the eased value.

For more info, see these comparisions of various easing functions, and gre's gist.

Usage

const FaceTracking = require("FaceTracking");
const Scene = require("Scene");

const EasingSignals = require("sparkar-easing-signals");

const rectangle = Scene.root.find("rectangle0");
const mouthOpenness = FaceTracking.face(0).mouth.openness;
const easedOpenness = EasingSignals.easeOutQuad(mouthOpenness);

rectangle.transform.scaleX = easedOpenness;
rectangle.transform.scaleY = easedOpenness;