Forum rules - please read before posting.

Is it possible to run the OnStart or OnLoad Cutscene in the Loading Screen?

I found that the Loading Screen doesn't run the OnStart or OnLoad cutscene while I switch scenes. But I want to make some changes of it base on Variables. Is it possible to do so?

Comments

  • AC's regular startup behaviour won't kick in inside a loading screen, but you can run an ActionList manually with a simple script attached to it:

    using UnityEngine;
    
    public class LoadingSceneCutscene : MonoBehaviour
    {
    
        void Start ()
        {
            GetComponent<AC.ActionList> ().Interact ();
        }
    
    }
    
  • AC's regular startup behaviour won't kick in inside a loading screen, but you can run an ActionList manually with a simple script attached to it:

    Sorry for replying late and thank you so much! Problem solved perfectly!

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.