Don't try to start a coroutine in VirtualizedScrollRectList when the GameObject is inactive #972
+130
−43
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #828
Delays creating the coroutine until the next time the script/GameObject is enabled. Adds a test to ensure this case is accounted for.
Before:
![{684B58A6-9317-4B49-B6FE-8ADDBDDB2932}](https://private-user-images.githubusercontent.com/3580640/402169202-5524afe0-e659-48f7-bf51-b78126caa6d4.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk5MzE1NDYsIm5iZiI6MTczOTkzMTI0NiwicGF0aCI6Ii8zNTgwNjQwLzQwMjE2OTIwMi01NTI0YWZlMC1lNjU5LTQ4ZjctYmY1MS1iNzgxMjZjYWE2ZDQucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI1MDIxOSUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNTAyMTlUMDIxNDA2WiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9OWYwZDYyODM4ZWY2MzhjZjEyZGFkNDgzYWZmYmJkYzAzNzQzOWM3MTkxN2M3NGUyZjg1NjYwNGRlOGY4NzE4ZiZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QifQ.R6wEnJ4ztaMgr-II3N6CfahSkn-hmBJAzCmqFyT6LII)
After:
![{D208BD11-EC3B-4E1B-BDEC-DE5C341DD492}](https://private-user-images.githubusercontent.com/3580640/402169073-a6c29568-6d55-4eb6-823d-1d74644b05ae.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk5MzE1NDYsIm5iZiI6MTczOTkzMTI0NiwicGF0aCI6Ii8zNTgwNjQwLzQwMjE2OTA3My1hNmMyOTU2OC02ZDU1LTRlYjYtODIzZC0xZDc0NjQ0YjA1YWUucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI1MDIxOSUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNTAyMTlUMDIxNDA2WiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9ZGRkNDQ2NzIxMmZjODg5ZWM0NzViZjg3NGNkYTdhNGU4OTJjZmM4MjZiN2IzYmJjOWZiNjIyODRkNzZmYWJjYSZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QifQ.8D8nhtrsqLzLWw__32yMNF_nxJicIQHfd4cXFYhSMrY)