Answers for "unity cannot modify the return value of 'particlesystem.emission' because it is not a variable"

C#
1

unity cannot modify the return value of 'particlesystem.emission' because it is not a variable

// Try this instead:
var em = particleSystem.emission; 
em.enabled = true;
Posted by: Guest on April-03-2021

Code answers related to "unity cannot modify the return value of 'particlesystem.emission' because it is not a variable"

C# Answers by Framework

Browse Popular Code Answers by Language