纳金网

标题: unity3d中两种语言的对比JavaScript vs C# 第四节 [打印本页]

作者: 会飞的鱼    时间: 2011-11-5 11:37
标题: unity3d中两种语言的对比JavaScript vs C# 第四节


            
         



           系列教程的第四部分,主要对比了二种语言中yielding的使用,下面是原文:
         

           This is the 4th post of a series that tries to explain the main differences between JavaScript and C# when programming for Unity3D. In this post, some differences between yielding (pausing) code***cution in these two programming languages will be pointed out. Before continuing, it is highly recommended that you read the first, second and third other posts of the series.
         

           As explained before, yielding pauses the code***cution, being very useful to game programming, as you have a better control when things will happen in your game. Whether using C# or JavaScript in Unity3D, one can’t simply yield the Update() method. There is a workaround for that, but as you might have guessed, they are different for the two programming languages we are discussing. Since these workarounds are often used, they will be the examples presented on this post. Let’s start by seeing how to yield a JavaScript code:
         

           private var textS:String;
         

           private var counter:float = 0;
         

           function Update ()
         

           {
         

           //call the function that waits three seconds to***cute
         

           WaitThreeSeconds();
         

           }
         

           //This function waits three seconds before***cuting
         

           function WaitThreeSeconds()
         

           {
         

           //Waits three seconds
         

           yield WaitForSeconds(3);
         

           //converts the counter to a String and stores its value in textS
         

           textS = "Three seconds has passed, now I'm counting..."+counter.ToString();
         

           //add one to the counter
         

           ++counter;
         

           }
         

           /*This function is responsible for outputting text to the
         

              screen and rendering other GUI elements*/
         

           function OnGUI()
         

           {
         

           //The next line displays the first line of text
         

           GUI.Label(new Rect(20,20,250,20), "I will start counting in 3 seconds.");
         

           //Displays the counter
         

           GUI.Label(new Rect(20,40,500,20),textS);
         

           }
         

           This code outputs two lines of text to the screen. The first one is rendered as soon as the code starts***nning; the second line only appears after three seconds has passed. The code yields only once, and its***cution continues normally inside the Update() loop (meaning it doesn’t wait 3 seconds to***cute the next time WaitThreeSeconds() is called). Note that we had to put the code we wanted to yield inside a function, because the Update() method can’t be paused.
         

           This is how the same code is written using C#:
         

           using UnityEngine;
         

           using System.Collections;
         

           public class Yield : MonoBehaviour
         

           {
         

           private string textS;
         

           private float counter = 0;
         

           void Update ()
         

           {
         

           //doesn't generate an error but doesn't work either.
         

           WaitThreeSeconds();//<=does nothing
         

           //start the coroutine named WaitThreeSeconds
         

           StartCoroutine("WaitThreeSeconds");//<=right
         

           }
         

           //Waits three seconds before***cuting
         

           IEnumerator WaitThreeSeconds()
         

           {
         

           //Waits three seconds
         

           yield return new WaitForSeconds(3);
         

           //converts the counter to a String and stores its value in textS
         

           textS = "Three seconds has passed, now I'm counting..."+counter.ToString();
         

           //add one to the counter
         

           ++counter;
         

           }
         

           /*This function is responsible for outputting text to the
         

           screen and rendering other GUI elements*/
         

           void OnGUI()
         

           {
         

           //The next line displays the first line of text
         

           GUI.Label(new Rect(20,20,250,20), "I will start counting in 3 seconds.");
         

           //Displays the counter
         

           GUI.Label(new Rect(20,40,500,20),textS);
         

           }
         

           }
         

           The main difference here is that we can’t put a yield inside a function using C#. We are forced to use the IEnumerator interface, because that’s just the way C# was designed (more information on the IEnumerator interface can be found here). And we can’t just call WaitThreeSeconds() as a normal function, if we do that, nothing will happen. So, the solution was to call WaitThreeSeconds() as a coroutine (line 14).
         

           Another difference is in line 21, where, instead of writing yield WaitForSeconds(3), we had to write: yield return new WaitForSeconds(3). That is necessary since we are using the IEnumerator interface which requires a return.
         

           That’s it for this post! I hope it was clear enough. For the next post of this series, I will show some differences when using the Raycast class in JavaScript and C#. Read it here: Part 5 – Raycasting.
         

作者: 菜刀吻电线    时间: 2012-2-13 23:30
加精、加亮滴铁子,尤其要多丁页丁页

作者: 菜刀吻电线    时间: 2012-4-28 23:20
精典,学习了!

作者: 奇    时间: 2012-5-31 23:18
好可爱的字,学习了

作者: 奇    时间: 2012-6-7 23:19
凡系斑竹滴话要听;凡系朋友滴帖要顶

作者: 晃晃    时间: 2012-7-30 23:21
不错不错,收藏了

作者: tc    时间: 2012-12-15 23:23
水……生命之源……灌……

作者: tc    时间: 2013-1-25 12:55
不错哦,谢谢楼主

作者: tc    时间: 2013-2-21 23:34
呵呵,很好,方便罗。





欢迎光临 纳金网 (http://go.narkii.com/club/) Powered by Discuz! X2.5