particleCharge
The electric charge, in coulombs, of each particle in the system. Animatable.
Declaration
var particleCharge: CGFloat { get set }Discussion
A particle’s charge determines its behavior when affected by an electric or magnetic field. Use the SCNPhysicsField class to add these fields to your scene. Particles with positive or negative charges behave differently when affected by electric or magnetic fields. (Note that while SceneKit uses SI units as the basis for its physics simulation, you need not worry about realism — experiment with different combinations of values to find the behavior that works best for your app or game.) You can randomize the charges of particles in the system with the particleChargeVariation property.
The default value is 0.0 coulombs, making the particle system unaffected by electric or magnetic fields.
You can animate changes to this property’s value. See Animating SceneKit Content.