uv_on_emitter for child particles

Hi,

I wonder if there is possibility to get uv_on_emitter for all particles including child particles?
My loop over particles look like this:


for pindex in range(0, num_parents + num_children): 
    p_uv = partSystem.uv_on_emitter(mod, partSystem.particles[pindex])

When there are children enabled I got index out of range because partSystem.particles returns only parents, not the children.

Would also like to know this.