Sensuki Posted November 27, 2014 Posted November 27, 2014 (edited) 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 November 27, 2014 by Sensuki
0 Gairnulf Posted November 27, 2014 Posted November 27, 2014 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:
0 Starwars Posted November 27, 2014 Posted November 27, 2014 I am all for intro skippage. Listen to my home-made recordings (some original songs, some not): http://www.youtube.c...low=grid&view=0
0 NCarver Posted November 30, 2014 Posted November 30, 2014 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!
0 Hormalakh Posted December 1, 2014 Posted December 1, 2014 Have you tried hitting "esc" after starting the game? I am always skipping the intro. It just takes a few seconds to skip. My blog is where I'm keeping a record of all of my suggestions and bug mentions. http://hormalakh.blogspot.com/ UPDATED 9/26/2014 My DXdiag: http://hormalakh.blogspot.com/2014/08/beta-begins-v257.html
0 Sensuki Posted December 1, 2014 Author Posted December 1, 2014 That skips the "Pillars of Eternity presented by Obsidian Entertainment" but not the Obsidian logo before you get into the main screen. 1
Question
Sensuki
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:
Edited by Sensuki6 answers to this question
Recommended Posts