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
- Tile Palette selected dropdown text does not update when palette is renamed
- ArgumentException thrown and reference to Template gets unset when opening UXML file after editing referenced Template in Play mode
- [iOS][WebGL] Player freezes when multiple properties of a VisualElement are changed at the same time
- Warning 'GetControlID at event ValidateCommand returns a controlID different from the one in the Layout event' is logged when undoing the deletion of an Edited Freeform 2D Light
- ShadowCaster2D breaks on certain Rotation positions when Casting Source is set to PolygonCollider2D
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?