01-03-2023, 11:39 AM
(01-03-2023, 03:48 AM)JooKitOoz Wrote: Ey Jose, I can't get around this error I get when reloading my scene after the player died:
MissingReferenceException: The object of type 'Rigidbody' has been destroyed but you are still trying to access it.
Your script should either check if it is null or you should not destroy the object.
Obi.ObiRigidbody.UpdateKinematicVelocities (System.Single stepTime) (at Assets/Obi/Scripts/Common/Collisions/ObiRigidbody.cs:32)
Obi.ObiRigidbody.UpdateIfNeeded (System.Single stepTime) (at Assets/Obi/Scripts/Common/Collisions/ObiRigidbody.cs:48)
Obi.ObiColliderWorld.UpdateRigidbodies (System.Collections.Generic.List`1[T] solvers, System.Single stepTime) (at Assets/Obi/Scripts/Common/Collisions/ObiColliderWorld.cs:378)
Obi.ObiUpdater.BeginStep (System.Single stepDeltaTime) (at Assets/Obi/Scripts/Common/Updaters/ObiUpdater.cs:55)
Obi.ObiFixedUpdater.FixedUpdate () (at Assets/Obi/Scripts/Common/Updaters/ObiFixedUpdater.cs:46)
Can you give me any hint about what could happen here?
NOTE: When building the game the first time that the game reloads it works ok, and the rope reloads ok in it's new position after the player modified it, but the second time it dies the rope gets the original position and is no longer interactable. In the editor it fails the first time the player dies.
Thx in advance
Hi,
That's really strange! the ObiRigidbody component requires a Rigidbody component to be present (uses the RequireComponent attribute in Unity, you can see it in ObiRigidbody.cs).
When using this attribute, Unity should not allow the Rigidbody to be destroyed if ObiRigidbody is present. Instead it should show an error in the console stating that the component cannot be destroyed because another one requires it to be present. Also, when adding the ObiRigidbody component to any object Unity automatically adds a Rigidbody as well, if one is not already present.
Honestly I don't see how this error can even be possible, only thing that comes to mind is corrupted scene serialization that somehow allows the ObiRigidbody component to exist without a Rigidbody component present.
Could you elaborate on what you're doing as part of the saving/loading system in your game? If you're dealing with rigidbodies/colliders, maybe there's something causing this?
kind regards,