Bolt Basic Tut 3 Errors ???

Bolt Basic tut 3 won't compile for me:
https://doc.photonengine.com/en-us/bolt/current/getting-started/bolt-103-events
F:\PROJECTS_UNITY\BOLT_TUTS\BOLT_TUT_01_001\Temp\bolt\project.cs(2133,14): (Location of the symbol related to previous error)
UnityEngine.Debug:LogError(Object)
BoltUserAssemblyCompiler:ErrorDataReceived(Object, DataReceivedEventArgs)
System.Diagnostics.ProcessAsyncReader:AddInput()

F:\PROJECTS_UNITY\BOLT_TUTS\BOLT_TUT_01_001\Temp\bolt\project.cs(2404,16): error CS0101: The namespace `global::' already contains a definition for `LogEvent_Meta'
UnityEngine.Debug:LogError(Object)
BoltUserAssemblyCompiler:ErrorDataReceived(Object, DataReceivedEventArgs)
System.Diagnostics.ProcessAsyncReader:AddInput()

F:\PROJECTS_UNITY\BOLT_TUTS\BOLT_TUT_01_001\Temp\bolt\project.cs(2252,16): (Location of the symbol related to previous error)
UnityEngine.Debug:LogError(Object)
BoltUserAssemblyCompiler:ErrorDataReceived(Object, DataReceivedEventArgs)
System.Diagnostics.ProcessAsyncReader:AddInput()

F:\PROJECTS_UNITY\BOLT_TUTS\BOLT_TUT_01_001\Temp\bolt\project.cs(2461,18): error CS0101: The namespace `global::' already contains a definition for `ILogEventListener'
UnityEngine.Debug:LogError(Object)
BoltUserAssemblyCompiler:ErrorDataReceived(Object, DataReceivedEventArgs)
System.Diagnostics.ProcessAsyncReader:AddInput()

F:\PROJECTS_UNITY\BOLT_TUTS\BOLT_TUT_01_001\Temp\bolt\project.cs(2320,18): (Location of the symbol related to previous error)
UnityEngine.Debug:LogError(Object)
BoltUserAssemblyCompiler:ErrorDataReceived(Object, DataReceivedEventArgs)
System.Diagnostics.ProcessAsyncReader:AddInput()

Compilation failed: 3 error(s), 0 warnings
UnityEngine.Debug:Log(Object)
BoltUserAssemblyCompiler:OutputDataReceived(Object, DataReceivedEventArgs)
System.Diagnostics.ProcessAsyncReader:AddInput()


It's also showing a script error. I copied and pasted the scripts, So I am not sure why and what I messed up.

Assets/Tutorial/Scripts/ServerCallbacks.cs(5,14): error CS0101: The namespace `global::' already contains a definition for `ServerCallbacks'

Best Answers

Answers

  • mostlyhuman
    edited February 2018
    I had this same issue, the problem is if you install the "Samples" beforehand it already adds an event called LogEvent, so you will either need to edit or delete that one, or create a new one with a different name so they don't conflict with each other.