得分的方法
Posted 礼桀
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了得分的方法相关的知识,希望对你有一定的参考价值。
using UnityEngine; using System.Collections; public class GameManager : MonoBehaviour { public static GameManager _instance; public int score = 0; void Awake() { _instance = this; } // Update is called once per frame void Update () { } }
在enemy脚本设置方法如下
public int score=100; public bool isExplosion = false; //死亡并得分 public void ToDeadGetScore() { isExplosion = true; GameManager._instance.score += score; }
以上是关于得分的方法的主要内容,如果未能解决你的问题,请参考以下文章