当前位置: 首页>>代码示例>>C#>>正文


C# Ball.Respawn方法代码示例

本文整理汇总了C#中Ball.Respawn方法的典型用法代码示例。如果您正苦于以下问题:C# Ball.Respawn方法的具体用法?C# Ball.Respawn怎么用?C# Ball.Respawn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Ball的用法示例。


在下文中一共展示了Ball.Respawn方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: initLevel

    /*
       INITLEVEL: restarts the current level, resets ball status and position; respawns any destructibles.
       */
    public void initLevel()
    {
        print("Level initialized");
        GameMenuLose = GameObject.Find("LoseMenu");
        GameMenuWin = GameObject.Find("WinMenu");
        RespawnableObjects = GameObject.FindGameObjectsWithTag("BuildOnEnd");
        RespawnableObjectsWithParticles = GameObject.FindGameObjectsWithTag("BuildOnEndParticleChild");

        // Initlevel may have an external call
        objectBall = GameObject.Find("RollerBall");
        theBall = (Ball)objectBall.GetComponent(typeof(Ball));

        //Default parameters
        Resume();
        GameMenuWin.SetActive(false);
        GameMenuLose.SetActive(false);
        theBall.Respawn();
        CountText.text = (lvl_timer).ToString();
        theBall.setStatus(0);
        CurrentTime = 0;

        for (int i = 0; i< RespawnableObjects.Length; i++)
        {
            print(RespawnableObjects[i].name);
            RespawnableObjects[i].GetComponent<Collider>().enabled = true;
            RespawnableObjects[i].GetComponent<Renderer>().enabled = true;

        }

        /*
        VERY IMPORTANT THE STRUCTURE OF A PARTICLE POWERUP MUST BE OF THE STRUCTURE
            POWERUP_
                .CHILD PARTICLE 1  ->SPACE(0)
                .CHILD PARTICLE 2  ->SPACE(1)

        */

        for (int i = 0; i <RespawnableObjectsWithParticles.Length; i++)
        {
            print("Respanwed: "+RespawnableObjectsWithParticles[i].name);
            RespawnableObjectsWithParticles[i].GetComponent<Collider>().enabled = true;
            RespawnableObjectsWithParticles[i].transform.GetChild(0).GetComponent<ParticleSystem>().enableEmission = true;
            RespawnableObjectsWithParticles[i].transform.GetChild(1).GetComponent<ParticleSystem>().enableEmission = true;

        }
    }
开发者ID:keny91,项目名称:BallsMazes-Unity,代码行数:49,代码来源:LVL_controler.cs

示例2: Start

    // Use this for initialization
    void Start()
    {
        audioS = gameObject.AddComponent<AudioSource>();

        objectBall = GameObject.Find("RollerBall");
        theBall = (Ball)objectBall.GetComponent(typeof(Ball));
        theBall.Respawn();
        print("BALL AT START during the beggining");
        initLevel();
    }
开发者ID:keny91,项目名称:BallsMazes-Unity,代码行数:11,代码来源:LVL_controler.cs


注:本文中的Ball.Respawn方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。