Error Cs0101 The namespace `UnityStandardAssets.ImageEffects' already contains a definition for `BloomScreenBlendMode' help

Hey all I just recently purchased the Ultimate Vfx Particle Pack by Mirza Beig found here : Asset Store . And when importing and trying to run the demo scene I am getting quite a few compiling errors on a fresh 5.2.2f1 Install. the error read as follows:

Assets/Mirza Beig/_assets/Unity/Standard Assets/Effects/ImageEffects/Scripts/BloomAndFlares.cs(6,17): error CS0101: The namespace `UnityStandardAssets.ImageEffects' already contains a definition for `LensflareStyle34'

Assets/Mirza Beig/_assets/Unity/Standard Assets/Effects/ImageEffects/Scripts/BloomAndFlares.cs(13,17): error CS0101: The namespace `UnityStandardAssets.ImageEffects' already contains a definition for `TweakMode34'

Assets/Mirza Beig/_assets/Unity/Standard Assets/Effects/ImageEffects/Scripts/BloomAndFlares.cs(19,17): error CS0101: The namespace `UnityStandardAssets.ImageEffects' already contains a definition for `HDRBloomMode'

ect I was wondering if you guys could help me get this pack up and running ty

Script names must be unique – in this case, you have multiple scripts named LensflareStyle34, TweakMode34, and HDRBloomMode.

It’s possible that your project already included files with those names, before you imported this asset pack.

If the files are exact duplicates of each other, then you can delete the duplicates.

If the files are different, then you will need to rename the duplicates – not just their files, but also the class name that’s within the code.

Hey thanks man yes I found the duplicate scripts and everything is running smoothly now. Thank You !