Search Issue Tracker
Fixed in 2017.2.0f3
Fixed in 2017.1.X, 2017.2.X
Votes
1
Found in
2017.1.0f3
Issue ID
933341
Regression
No
[WSA] Input gets queued during splash screen, played out over N frames after splash is complete
Steps to reproduce:
1. Open the attached project(SplashScreen.zip)
2. Open the test scene
3. Switch platform to Windows Store
4. Build for WSA Universal
5. Open VS solution
6. Deploy on local machine
7. Press escape during the splash
8. Input is ignored until splash screen is over after Editor closes
Note:
Not reproducible on the standalone build
Actual results: Input is ignored until splash screen is over after Editor closes
Expected results: Input should be ignored
Reproduced with: 5.5.4p2, 5.6.2p4, 2017.1.0p1, 2017.2.0b4, 2017.3.0a1
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- [Silicon] Crash with multiple StackTraces when entering Play Mode in a project with corrupted FBX files
- Index Out Of Range exception when trying to use Rendering Layer Override in Probe Adjustment Volume without a mask defined in lighting settings
- [Android] [Vulkan] [WebCamTexture] "WebCamTexture.Play" crashes the application when the camera is started
- Huge performance overheads appear when there is a large amount of bindings in the UI Toolkit
- Visual Effects Graph Blackboard can't be scrolled horizontally
unity_oOWkIslGJHEkrQ
Oct 23, 2020 01:33
I know this is an old discussion, but I came across this problem while making a game and ended here.
What I did was a quick fix but only works if you only want to ignore touch or click inputs during the splash screen. (Doesn't work for ignoring KeyCode inputs)
Basically, what I did was I added a panel on my canvas which is supposed to "block" touch / click inputs and just SetActive it to true in the Start function and added a condition that checks if the splash screen is done. If yes SetActive it to false. It worked for me, hope it works for those who are dealing with the same problem.
Pascal-Lohscheidt
Jun 05, 2019 21:45
Hey, I still have that issue with touch input. It basically queues the touches until the scene is loaded. So Rendering.SplashScreen.isFinished doesn´t help.
Should I report that as a new issue?