Quest: Double Room Quest
Challenge: Little Bit of Spice
Feel free to share your solutions, ideas and creations below. If you get stuck, you can find some ideas here for completing this challenge.
Quest: Double Room Quest
Challenge: Little Bit of Spice
Feel free to share your solutions, ideas and creations below. If you get stuck, you can find some ideas here for completing this challenge.
Add a Serialized Field at the beginning of the class:
[SerializeField] ParticleSystem completionParticles;
And one line of code to the OnTrigger:
Instantiate(completionParticles, transform.position, Quaternion.identity);
And don’t forget to plug the Particles Prefab into the Inspector at each Finishing Pad.
Awesome! I did the same but using a GameObject instead of ParticleSystem.