declare const _default: "\nuniform mat3 spawnBounds;\nuniform float spawnBoundsSphere;\nuniform float spawnBoundsSphereInnerRatio;\nuniform float spawnBoundsLength;\nuniform float spawnBoundsLengthInnerRatio;\n\nvec3 calcSpawnPosition(vec3 inBounds, float rndFactor) {\n float rnd4 = fract(rndFactor * 1000.0);\n vec3 norm = normalize(inBounds.xyz - vec3(0.5));\n norm.z = abs(norm.z);\n float r = rnd4 * (1.0 - spawnBoundsSphereInnerRatio) + spawnBoundsSphereInnerRatio;\n#ifndef LOCAL_SPACE\n return emitterPos + spawnBounds * norm * r * spawnBoundsSphere;\n#else\n return spawnBounds * norm * r * spawnBoundsSphere;\n#endif\n}\n\nvoid addInitialVelocity(inout vec3 localVelocity, vec3 inBounds) {\n localVelocity += normalize(inBounds - vec3(0.5)) * initialVelocity;\n}\n"; export default _default;