A new object containing all default particle system settings
import { getDefaultParticleSystemConfig, createParticleSystem } from '@newkrok/three-particles';
// Get default config and modify it
const config = getDefaultParticleSystemConfig();
config.emission.rateOverTime = 100;
config.startColor.min = { r: 1, g: 0, b: 0 };
const { instance } = createParticleSystem(config);
scene.add(instance);
Returns a deep copy of the default particle system configuration.
This is useful when you want to start with default settings and modify specific properties without affecting the internal default configuration object.