Topic: "Mirror on Right Side" does not work for Particle Effect (Moves)

"Mirror on Right Side" still does not work for Particle Effect (of the Moves Editor).

Please advise.

Share

Thumbs up Thumbs down

Re: "Mirror on Right Side" does not work for Particle Effect (Moves)

Will look into this for the next update.

Share

Thumbs up +1 Thumbs down

Re: "Mirror on Right Side" does not work for Particle Effect (Moves)

Sorry I didn't reply to this earlier.

The mirror option is only designed to rotate the particle prefab 180 degrees on the other direction. It has no control over particles and other effects spawning from the prefab.

This is what it does under the hood:

particle.transform.localEulerAngles = new Vector3(particle.transform.localEulerAngles.x, particle.transform.localEulerAngles.y + 180, particle.transform.localEulerAngles.z);
Like UFE? Please rate and review us on the Asset Store!
Questions about the Forum? Check out our Karma FAQ.
Don't forget to check our discord channel.

Re: "Mirror on Right Side" does not work for Particle Effect (Moves)

@Mistermind

Thanks for the reply. The code in this form addressed the issue and it works great.

http://www.ufe3d.com/forum/viewtopic.php?id=3792

Share

Thumbs up Thumbs down