November 27, 201411 yr 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, 201411 yr by Sensuki
November 27, 201411 yr 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:
November 27, 201411 yr 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
November 30, 201411 yr 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!
December 1, 201411 yr 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
December 1, 201411 yr Author That skips the "Pillars of Eternity presented by Obsidian Entertainment" but not the Obsidian logo before you get into the main screen.