I installed Unity and it gave error, I can not visualize the demo of the game nor put the scripts

3

These are the errors that appear when I open Unity:

Assets/_CompletedAssets/Scripts/Helpers/RandomParticlePoint.cs(12,9): error CS0619: 'UnityEngine.Component.particleSystem' is obsolete: 'Property particleSystem has been deprecated. Use GetComponent<ParticleSystem>() instead. (UnityUpgradable)'
Assets/_CompletedAssets/Scripts/Helpers/RandomParticlePoint.cs(12,24): error CS1061: Type 'UnityEngine.Component' does not contain a definition for 'Simulate' and no extension method 'Simulate' of type 'UnityEngine.Component' could be found (are you missing a using directive or an assembly reference?)

And when I put a script:

Please fix compile errors before creating new script components.
    
asked by anonymous 12.05.2015 / 06:43

2 answers

1

The first error is that you are using an old project, and have not converted it to run on Unity 5.

The second is similar, the difference is that it makes a call to a method and can not find it.

When you answer which project you are trying to run, I explain what you need to do to make it work - if possible, because some very old projects are well out of phase and the work to resolve would not be plausible for a response in stackoverflow (but this should not be the case, this error is common in newer version 4 projects.)

    
13.05.2015 / 13:02
0

This happens because your "UnityEngine.Component.particleSystem" set a preview property after you've run your preview. In this case, check your extensions or reinstall the software.

    
12.05.2015 / 06:55