Jump to content
View in the app

A better way to browse. Learn more.

Obsidian Forum Community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

[Issue] Let us skip the Obsidian Intro Movie

Featured Replies

Please let us skip the Obsidian intro movie ... what's more here's the code to do it, courtesy of Bester.

 

The update method of the CompanyIntroManager needs to be changed to:

private void Update()
  {
    this.m_delay -= Time.deltaTime;
    if ((double) this.m_delay > 0.0 && (Input.GetMouseButtonDown(0) || Input.GetMouseButtonDown(1) || (Input.GetKeyDown(KeyCode.Escape) || Input.GetKeyDown(KeyCode.Return)) || Input.GetKeyDown(KeyCode.Space)))
    {
      this.IntroMovieManager.StopMovie();
      this.m_delay = 0.0f;
    }
    if (!this.m_started && (double) this.m_delay <= 0.0)
    {
      this.IntroMovieManager.PlayMovieAtPath("Movies/obsidian_intro", false);
      this.m_delay = this.IntroMovieManager.GetMovieDuration() + 1f;
      this.m_started = true;
    }
    else
    {
      if ((double) this.m_delay > 0.0)
        return;
      Debug.Log((object) "LOAD TO MAIN MENU.\n\n");
      Application.LoadLevel("MainMenu");
    }
  }
}

Edited by Sensuki

Is this the intro when starting the game or the intro when starting to create a new character?

A Custom Editor for Deadfire's Data:
eFoHp9V.png

  • Author

Starting the game

Hello all,

 

Thank you for your postings. I have added this suggestion to our database so that it may be reviewed.

 

Thanks again for your ongoing support!  :thumbsup:

  • Author

That skips the "Pillars of Eternity presented by Obsidian Entertainment" but not the Obsidian logo before you get into the main screen.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.