Jump to content

reuse point in pop network


imoh3n

Recommended Posts

hi.

in pop network i use a volume of points for source of emitter, i want to each point just emit a particle once. something like, don't reuse point in particle node.

i do something like that in sop network, create a group for points that id's, greater than the number of source points and use blast to delete particles in group, but i think there must be a better way.

i hope if somebody help me.

Link to comment
Share on other sites

hi.

in pop network i use a volume of points for source of emitter, i want to each point just emit a particle once. something like, don't reuse point in particle node.

i do something like that in sop network, create a group for points that id's, greater than the number of source points and use blast to delete particles in group, but i think there must be a better way.

i hope if somebody help me.

On the popnet there is a parameter for Max Points that you set.

Link to comment
Share on other sites

I'm not sure if I understand the question very well.

but if you are trying to emit on a specific frame what u are looking for is

lets say u only wonna emit as many points as your source, on frame 36;

Impulse Activation: $FF == 36

Impulse Birth Rate: $NPT

?

cheers,

selcuk

Link to comment
Share on other sites

Here is an example. You basically need to delete all but the point you want to emit from on the frame you want to emit. In the delete SOP I am doing this by the expression:

$PT == ($F - 1) / 10

If the point number equals the frame number, then its kept and it emits a particle. All others are deleted. I divide by 10 just to slow down when each particle is emitted.

emitOneAtATime_001sl.hip

Link to comment
Share on other sites

you put a kill pop and use the following rule maybe

$ID >= npoints(opinputpath("../",0))

afterwards you can get rid of the unnecessary points in sops by using a similar expression in delete sop, such as;

$ID >= npoints("/obj/geo1/particlesource")

Edited by cellchuk
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...