system
1
Hello all,
I have a few projects I worked on while at University last year. I have opened up the project after a year of not touching them. however, while they were working at the time I last used the project on Unity. since upgrading the project I have a list of 28 errors that I do not understand from the standard assets folders.
do these not get upgraded with the rest of the upgrade?
example of errors:
Assets/Standard Assets/Character Controllers/Sources/Scripts/ThirdPersonController.js(325,33): BCE0048: Type ‘Object’ does not support slicing.
Assets/Standard Assets/Character Controllers/Sources/Scripts/ThirdPersonController.js(326,33): BCE0048: Type ‘Object’ does not support slicing.
Assets/Standard Assets/Character Controllers/Sources/Scripts/ThirdPersonController.js(327,44): BCE0019: ‘CrossFade’ is not a member of ‘Object’.
DaveA
2
They ‘tightened’ up the compiler. You would have gotten those had you used #pragma probably. So you need to make sure everything has a specific type (var go : GameObject; not just var go;)