Particle constructor

Particle(
  1. ShapeConfig config,
  2. Vec3 normal
)

Particule Shape

config config file of the shape

normal the direction of the particle

Implementation

Particle(ShapeConfig config, this.normal):super(config){
  type = Shapes.particle;
}