Need to reference beam emitter target in blueprint

I’m trying to set the target location of a beam particle emitter using blueprint, but I’m not finding a way to reference the specific emitter that contains the target. For example I have two beam emitters in my particle system:

39500-emitters.png

I’ve set the Target Method of each one to User Set, and named them Target1 and Target2 respectively:

39521-target.png

All I want to do for now is arbitrarily set the target location to something like x100 y100 z100 within blueprint, but I’m stumped on how I can reference the specific emitter within my particle system that contains the target I’m trying to set the location for:

39522-bp.png

I know I must be missing something simple. Does anybody know how to reference an emitter in my level blueprint, and/or the targets I named “Target1” and “Target2” so I can plug them into a set beam target point node? Otherwise does anybody know an alternative method to setting the beam target location?

Any help would be greatly appreciated.

Add a reference to your particle system and plug it into the Target of Set Beam Target Point. If you want to an another actor’s location as the target, grab its location and plug that into New Target Point. Also, check the order of the emitters in your system. If your beam target is in the first emitter, set Emitter Index: 0, if it is in the second emitter, Emitter Index: 1 and so on.

This worked perfectly, thanks so much for the help!