我是靠谱客的博主 纯情蜜粉,最近开发中收集的这篇文章主要介绍Unity3D技术之获取关卡的流进度语法详解,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Application.GetStreamProgressForLevel 获取关卡的流进度

 

 

static function GetStreamProgressForLevel (levelIndex : int) : float

 

Description描述

 

How far has the download progressed? [01]

 

下载的进度是多少?

 

In the webplayer this returns the progress of this level.

 

web播放器中这将返回这个关卡的进度。

 

参见: CanStreamedLevelBeLoaded 函数.

 

C#

 

JavaScript

 

 

using UnityEngine;using System.Collections;public class example : MonoBehaviour {        public float percentageLoaded = 0;

        void Update() {

                if (Application.GetStreamProgressForLevel(1) == 1)

                        guiText.text = "Level at index 1 has been fully streamed!";

                else {

                        percentageLoaded = Application.GetStreamProgressForLevel(1) * 100;

                        guiText.text = percentageLoaded.ToString();

                }

        }

}

// Print on a guiText how much has been streamed level at index 1

//在文本框打印在场景1里下载了多少?// When finished streaming, print "Level 1 has been fully streamed!"

//当完成时,打印"Level 1 has been fully streamed!"var percentageLoaded : float = 0;function Update() {    

 

 

    if(Application.GetStreamProgressForLevel(1) == 1) {

                guiText.text = "Level at index 1 has been fully streamed!";

        }

else {

                percentageLoaded = Application.GetStreamProgressForLevel(1) * 100;

                guiText.text = percentageLoaded.ToString();

        }

}

 

static function GetStreamProgressForLevel (levelName : string) : float

 

Description描述

 

How far has the download progressed? [01]

 

 

下载的进度是多少?

 

In the webplayer this returns the progress of this level.

 

 

web播放器中这将返回这个关卡的进度。

 

参见: CanStreamedLevelBeLoaded 函数

 

C#

 

JavaScript

 

 

using UnityEngine;using System.Collections;public class example : MonoBehaviour {

 

        public float percentageLoaded = 0;

 

        void Update() {

                if (Application.GetStreamProgressForLevel("Level1") == 1)

                        guiText.text = "Level 1 has been fully streamed!"; 

               else {

                        percentageLoaded = Application.GetStreamProgressForLevel("Level1") * 100;

                        guiText.text = percentageLoaded.ToString();

                }

        }

}

// Print on a guiText how much has been streamed "Level1"//在文本框打印在场景"Level1"里下载了多少?// When finished streaming, 

 

 

print "Level1 has been fully streamed!"//当完成时,

 

 

打印"Level 1 has been fully streamed!"var percentageLoaded :

 

 

float = 0;function Update() {

        if(Application.GetStreamProgressForLevel("Level1") == 1) {

 

                guiText.text = "Level 1 has been fully streamed!";

        }

else {

                percentageLoaded = Application.GetStreamProgressForLevel("Level1") * 100;

 

                guiText.text = percentageLoaded.ToString();

        }

}

最后

以上就是纯情蜜粉为你收集整理的Unity3D技术之获取关卡的流进度语法详解的全部内容,希望文章能够帮你解决Unity3D技术之获取关卡的流进度语法详解所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(32)

评论列表共有 0 条评论

立即
投稿
返回
顶部