码迷,mamicode.com
首页 > 其他好文 > 详细

得分的方法

时间:2016-04-03 22:16:32      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

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=100public bool isExplosion = false;
    //死亡并得分
    public void ToDeadGetScore()
    {
        isExplosion = true;
        GameManager._instance.score += score;
    }

 

得分的方法

标签:

原文地址:http://www.cnblogs.com/fuperfun/p/5350830.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!