Particles Wave

A customisable animating wave goverened by mathematical expressions and some creativity!

Imports

Usage

Basic Usage

Only the startColor, endColor, and the particlesCount props are used.

Using the wave Function props

There are a bunch of tailor made wave functions that are available in Zephyr3D. One such is used here - circularMotionXZ. More functions can be found here

Custom Wave Function

Custom wave functions can be added as well. The function's arguments and return type should be consistent with the waveFunction prop's type (Mentioned in the props section). The custom wave function showcased in the example is a diamond sine wave.

Props

PropDescriptionTypeDefault
particlesCountNumber of particles in the wavenumber500
xLengthLength of the wave in the X directionnumber14
yLengthLength of the wave in the Y directionnumber14
zLengthLength of the wave in the Z directionnumber4
durationIn milliseconds - governs the speed of the wavenumber1000
startColorThe start color in the `lerp` function while calculating the color of each particlestring#7439e2
endColorThe end color in the `lerp` function while calculating the color of each particlestring#ce9082
geometryGeometry defines the shape of the particleBufferGeometrynew SphereGeometry(0.02, 4, 4)
materialMaterial of the particle in the waveMaterialnew MeshStandardMaterial({ color: startColor })
waveFunctionMathematical expression governing the shape of the wavesineWaveXZMathematical expression governing the shape of the wave
Zephyr3D

Built by Pranshu Kumar Gond