yellowisher
yellowisher
Another workaround; call `tween.onUpdate` just after cancel. (quite cumbersome though) ``` cancelTween.Cancel(); tween.onUpdate(); // Instead of WaitForEndOfFrame transform.position = Vector3.zero; ``` Looking forward to neat implementation. 👀
I created a PR using @AlonTalmi's idea.
https://github.com/hadashiA/VContainer/pull/817 will fix this.
It seems you should remove the existing `AppContext` instance from the scene and instead use one that is instantiated at runtime. Before https://github.com/hadashiA/VContainer/pull/627, `VContainerSettings.Instance.RootLifetimeScope` was used directly as an instance....