Search Issue Tracker
Won't Fix
Votes
0
Found in
2017.4.6f1
Issue ID
1059982
Regression
No
Using CharacterController's OnControllerColliderHit leaks memory
Seems like using CharacterController's OnControllerColliderHit leaks memory every time the method is called. The leak is quite small but is definitely there.
To reproduce:
1) Download and open the project attached
2) Run the SampleScene
3) Open profiler to track memory usage
Increasing the amount of CharacterControllers in the scene increases the speed at which memory is leaked.
Reproduced on: 2019.1.0a8, 2018.3.0b10, 2018.2.14f1, 2018.1.9f2
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
- PlayerPrefs get corrupted when a minimized fullscreen Player is closed through the Taskbar
- "To Debug, run app with -diag-job-temp-memory-leak-validation cmd line argument. This will output the callstacks of the leaked allocations." warning is printed when JobTempMemoryLeakValidation switch is enabled
- Main Thread stalling when loading Audio Source asset asynchronously while preloading another Audio Source asset
- Material artifacts occur in the Material Preview window when baked lighting is applied to scenes
- “ArgumentOutOfRangeException” after saving, reseting and re-add Default Tile Palette Tools to the list in Preferences window
Resolution Note:
It's not a leak really, it's just due to the fact ControllerColliderHit is a class and thus its instance is created on the managed heap that gets garbage-collected every once in a while. We won't be able to change that currently.