Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Bug / Crash  Crash in Windows 2019.3.0f6
#2
Did you get the message "libOni.dll caused an Access Violation" in your error log? If so, I think I had a similar issue, although mine was caused by switching gameobject from active to not active, then back to active.

I think it was caused by the SortedPoints array of the SkinnedCloth component not being properly initialized before the updater/solver tried to use it to run BeginStep or SubStep. The order of operations can be a little hard to track, since LateFixedUpater uses coroutines. I don't know if this will help for your problem, but my fix was to enable/disable the gameobject with the cloth attached in a coroutine, after waiting for the end of a frame, this seemed to make sure that the skinned cloth component had time to fully run through one update/late update cycle to make sure everything was fully initialized.
Reply


Messages In This Thread
Crash in Windows 2019.3.0f6 - by jwindr - 26-02-2020, 12:11 AM
RE: Crash in Windows 2019.3.0f6 - by jp715 - 26-02-2020, 04:05 PM
RE: Crash in Windows 2019.3.0f6 - by jwindr - 26-02-2020, 06:56 PM
RE: Crash in Windows 2019.3.0f6 - by jwindr - 26-02-2020, 08:38 PM
RE: Crash in Windows 2019.3.0f6 - by jp715 - 26-02-2020, 10:27 PM
RE: Crash in Windows 2019.3.0f6 - by jwindr - 26-02-2020, 11:44 PM
RE: Crash in Windows 2019.3.0f6 - by josemendez - 27-02-2020, 10:19 AM