void Start()
    {
        // Cache the particle system (make sure you have set enough particle count)
        particles = GetComponent <PlaygroundParticlesC>();

        // Create a new skinned world object
        swo = PlaygroundC.SkinnedWorldObject(skinnedMeshTransform);

        // Start emission routine
        StartCoroutine(EmitOverAllVertices());
    }