Yesterday, 12:20 PM
(This post was last modified: Yesterday, 12:20 PM by josemendez.)
Hi there!
TeleportParticle() won't do anything if the particle referenced by the index does not exist, or if the actor has not been loaded into the solver yet. So by calling it on Start() you may be calling it before the solver has had a chance to initialize itself and loaded the actor.
Either check actor.isLoaded to see if the actor has been added to the solver, or call it on actor.OnBlueprintUnloaded() instead.
kind regards,
TeleportParticle() won't do anything if the particle referenced by the index does not exist, or if the actor has not been loaded into the solver yet. So by calling it on Start() you may be calling it before the solver has had a chance to initialize itself and loaded the actor.
Either check actor.isLoaded to see if the actor has been added to the solver, or call it on actor.OnBlueprintUnloaded() instead.
kind regards,