react-native-particle-system icon indicating copy to clipboard operation
react-native-particle-system copied to clipboard

Something awesome I made with your system!

Open faceyspacey opened this issue 9 years ago • 3 comments

Hey there @greghe i made something dope with your system--thought you might like to check it out:

https://www.youtube.com/watch?v=McUXH0HEcXI

I used 2 separate particle systems (each with one cell):

-one cuboid for the background larger slower particles -one line where the tagline appears underneath

It was a breeze. Thanks again!!!

faceyspacey avatar May 02 '16 04:05 faceyspacey

Wow! That is impressive.

greghe avatar May 06 '16 11:05 greghe

@faceyspacey What were the color ranges you used to get the rainbow-ish effect?

digitalcatnip avatar May 27 '16 13:05 digitalcatnip

let particleProps = {
  name : "untitled",
  enabled : true,
  contentsRect : {x: 0.0, y: 0.0, width: 1.0, height: 1.0},
  magnificationFilter: 'linear', minificationFilter: 'linear',
  scale: 1.0, scaleRange: 1.28, scaleSpeed: -0.29,
  color: '#0021ff',
  //color: 'orange',
  redRange: 0.6,    greenRange: 0.0, blueRange: .0, alphaRange: 0.57,
  redSpeed: 0.0, greenSpeed: 0.0, blueSpeed: -0.66, alphaSpeed: -0.64,

  lifetime: 2230.0,
  lifetimeRange: 33.11,
  birthRate: 350,
  velocity: 90.7, velocityRange: 90.0,
  xAcceleration: 0.0, yAcceleration: -156.0, zAcceleration : 0.0,

  // these values are in radians, in the UI they are in degrees
  spin : .5, spinRange : 50,
  emissionLatitude : 4.0, emissionLongitude : 0.0, emissionRange : 0.0,
};

@digitalcatnip that's the particle cell props for the underline.

faceyspacey avatar Aug 10 '16 06:08 faceyspacey