Search Issue Tracker
Fixed in 2017.1.0f3
Votes
2
Found in
5.6.0f3
Issue ID
897146
Regression
Yes
When Image component is added to a child through script, methods OnEnable() and OnDisable() are called
There is an attached project with a script, which creates 10 child objects and add Image component to them. Also there are OnEnable and OnDisable methods, which outputs an error message to the console. They both are called 10 times after pressing play. They are not called, except for initial OnEnable, if the line which adds Image component is commented.
Reproduction steps:
1. Open attached project
2. Press play
3. See the console output
Expected: 1 message in the console
Actual: 21 messages in the console
Not reproduced on: 5.6.0b7
Reproduced on: 5.6.0b8, 5.6.0f3, 2017.1.0a6
Regression introduced on: 5.6.0b8
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
- Tilemap.SetTile() does not change the tiles when called from Update() in the Player
- Custom Shader Material is pink when the project is built for the WebGL platform
- New 3D URP Sample Scenes Project is created with an invalid dependency on com.unity.render-pipelines.universal-config when creating the Sample Project for the first time
- Canvas Scaler causes abnormal scaling of Canvas elements in Play Mode when UI Scale Mode is set to "Constant Physical Size" and any Editor window is moved to a differently scaled monitor and is interacted with
- Touch.rawPosition always returns (0,0) when clicking or dragging anywhere on the screen in the Play Mode
TrialByFun
Apr 05, 2017 16:55
From what I can tell, it also calls OnEnable and OnDisable on all children AND their parent canvas, and the canvas's parent in turn. Will add a Example project when I get a moment.