Skip to content

Known Issues

Thomas Groechel edited this page Apr 20, 2022 · 1 revision

Codeblocks force broken interactable to remove itself

ReceiverBaseMonoBehavior.cs function OnDisable() should be:

        protected virtual void OnDisable() {
            if (Interactable != null) {
                Interactable.RemoveHandler(this);
            }
        }
Clone this wiki locally