Leon Hromyko

Results 1 comments of Leon Hromyko

You can use something like that ``` private void FixedUpdate() { PathComplete += _speed * Time.fixedDeltaTime; if (PathComplete > PathLength) { GameController.Instance.LevelComplete(); _rigidbody.velocity = Vector3.zero; enabled = false; return; }...