Compile Error with 2.0.7

magique

Active member
I decided to upgrade to 2.0.7 to see if it would fix my Unity hang issue, but I get the following compile error:

Assets/Opsive/UltimateCharacterController/Scripts/Character/Effects/Earthquake.cs(73,40): error CS0117: `SmoothRandom' does not contain a definition for `GetVector3Centered'

Using Unity 2017.1.5f1

I'm just hacking a fix for now, but thought you should know.
 
Hmmm, a possible namespace conflict. I hadn't thought of that. I'll search the project and see if that's the case.
 
Yep, that was it. CinemaSuite has a script with its own SmoothRandom function. I wrapped in a namespace and it is fine now.
 
Top