↧
Answer by aled96
Application.Quit() maybe works only after built it.. using the exe. If you press play on Unity it doesn't work. Try to do it :)
View ArticleAnswer by SuperMasterBlasterLaser
I think you should add boolean in your GhostScript: private bool chasingPlayer; void Start() { chasingPlayer = true; // Here will be other things for start } void Update() { if (chasingPlayer) { //...
View Article