Forum rules - please read before posting.

No KickStarter component found in the scene?

After upgrading an old project I started a year ago, I'm getting this error:

No KickStarter component found in the scene!

 -> AC debug logger
UnityEngine.Debug:LogError(Object, Object)
AC.ACDebug:LogError(Object, Object) (at Assets/AdventureCreator/Scripts/Static/ACDebug.cs:34)
AC.MultiSceneChecker:Awake() (at Assets/AdventureCreator/Scripts/Game engine/MultiSceneChecker.cs:58)

There is a kickstarter component on GameEngine, though:

I'm not sure what's causing this error, the scene seems to work even with this error, so I'm not sure what problems could occur with it thinking there's no kickstarter.

Comments

  • Are there any other "MultiSceneChecker" components present in your scene? There should only be one, and present on your GameEngine.

    You can find out where this error message is coming from by opening MultiSceneChecker.cs and changing line 58:

    ACDebug.LogError ("No KickStarter component found in the scene!");
    

    to:

    ACDebug.LogError ("No KickStarter component found in the scene!", gameObject);
    

    Clicking the error will then ping its location at runtime.

Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Welcome to the official forum for Adventure Creator.