sparkar-particle
v0.2.2
Published
A wrapped tool for contolling emitters in SparkAR.
Downloads
6
Readme
Particle
A wrapped tool for controlling emitters in SparkAR.
Install
Import
Download Particle.js (Right click and Save as)
Download PFTween.js (Right click and Save as)
Drag/Drop or import them to Spark AR
Import
Particle
moduleimport { Particle } from './Particle'; // Your script...
You can also Click Here to Download a Sample Project.
npm
Add package with
yarn
ornpm
yarn add sparkar-particle
or
npm i sparkar-particle
Import
Particle
moduleimport { Particle } from 'sparkar-particle'; // Your script...
Usage
import { Particle } from './Particle';
const TouchGestures = require('TouchGestures');
const ps = Particle.findFirst('emitter0').setFadeout().stop();
//or
//const ps = Particle.findAll('emitter0').setFadeout().stop();
//or
//const ps = Particle.findByPath('**/emitter0').setFadeout().stop();
TouchGestures.onTap().subscribe(() => ps.burst())