查看: 2206|回复: 0

[脚本章节]Overview : Writing Scripts in C# 使用C#书写脚本

[复制链接]

3795

主题

2

听众

5万

积分

版主

Rank: 7Rank: 7Rank: 7

纳金币
53202
精华
32

活跃会员 优秀版主 推广达人 突出贡献 荣誉管理 论坛元老

发表于 2012-10-11 10:33:01 |显示全部楼层
Apart from syntax, there are some differences when writing scripts in C# or Boo. Most notable are:
除了句法规则, 使用C#或Boo编写脚本还有一些不同,当.需要特别注意的是:
1. Inherit from MonoBehaviour

继承自MonoBehaviour
All behaviour scripts must inherit from MonoBehaviour (directly or indirectly). This happens automatically in Javascript, but must be explicitly explicitly inside C# or Boo scripts. If you create your script inside Unity through the Asset -> Create -> C Sharp/Boo Script menu, the created template will already contain the necessary definition.
所有的行为脚本必须从MonoBehaviour继承(直接的或间接的).在JavaScript中这个是自动完成的,但是在C#或Boo中,必须显示注明.如果你通过Asset -> Create -> C Sharp/Boo Script创建脚本,系统模版已经包含了必要的定义.
public class NewBehaviourScript : MonoBehaviour {...} // C#
class NewBehaviourScript (MonoBehaviour): ... # Boo
2. Use the Awake or Start function to do initialisation.

使用Awake或Start函数初始化.
What you would put outside any functions in Javascript, you put inside Awake or Start function in C# or Boo.
JavaScript中放在函数之外的代码,在C#或Boo中必须置于Awake或Start函数里.
The difference between Awake and Start is that Awake is***n when a scene is loaded and Start is called just before the first call to an Update or a FixedUpdate function. All Awake functions are called before any Start functions are called.
Awake和Start的不同之处在于,Awake是在加载场景时运行,Start是在第一次调用Update或FixedUpdate函数之前被调用,Awake函数运行在所有Start函数之前.
3. The class name must match the file name.

类名字必须匹配文件名.
In Javascript, the class name is implicitly set to the file name of the script (minus the file extension). This must be done manually in C# and Boo.
JavaScript中类名被隐式的设置为脚本的文件名(不包含文件扩展名).在C#和Boo中必须手工编写.
4. Coroutines have a different syntax in C#.

C#中协同程序有不同的句法规则
Coroutines have to have a return type of IEnumerator and you yield using yield return ... ; instead of just yield ... ;.
Coroutines必须是IEnumerator返回类型,并且yield用yield return替代.
using System.Collections;using UnityEngine;public class NewBehaviourScript : MonoBehaviour {// C# coroutine // C# 协同程序IEnumerator SomeCoroutine () {// Wait for one frame // 等一帧yield return 0;// Wait for two seconds // 等两秒yield return new WaitForSeconds (2);}}
5. Don't use namespaces.

不要使用命名空间
Unity doesn't support placing your scripts inside of a namespace at the moment. This requirement will be removed in a future version.
目前Unity暂不支持命名空间.或许未来版本会有.
6. Only member variables are serialized and are shown in the Inspector.

只有序列化的成员变量才能显示在检视面板
Private and protected member variables are shown only in Expert Mode. Properties are not serialized or shown in the inspector.
私有和保护变量只能在专家模式中显示.属性不被序列化或显示在检视面板.
7. Avoid using the cons***ctor.

避免使用构造函数
Never initialize any values in the cons***ctor. Instead use Awake or Start for this purpose. Unity automatically invokes the cons***ctor even when in edit mode. This usually happens directly after compilation of a script, because the cons***ctor needs to be invoked in order to retrieve default values of a script. Not only will the cons***ctor be called at unforeseen times, it might also be called for prefabs or inactive game objects.
不要在构造函数中初始化任何变量.要用Awake或Start函数来实现.即便是在编辑模式,Unity仍会自动调用构造函数.这通常是在一个脚本编译之后,因为需要调用脚本的构造函数来取回脚本的默认值.我们无法预计何时调用构造函数,它或许会被预置体或未激活的游戏对象所调用.
In the case of eg. a singleton pattern using the cons***ctor this can have severe consequences and lead to seemingly random null reference exceptions.
单一模式使用构造函数可能会导致严重后果,会带来类似随机的空参数异常.
So if you want to implement eg. a singleton pattern do not use the the cons***ctor, instead use Awake . Actually there is no reason why you should ever have any code in a cons***ctor for a class that inherits from MonoBehaviour .
因此,如果你想实现单一模式不要用构造函数,要用Awake函数.事实上,你没必要在继承自MonoBehaviour的类的构造函数中写任何代码.



来源:unity3d圣典 更多分享尽在web3D纳金网http://www.narkii.com/



————————————————————————————


Subsections 章节

     [脚本章节]Scripting Overview 脚本概述
    [脚本章节]Overview: Script compilation 脚本编译(高级)
    [脚本章节]Overview: Performance Optimization 性能优化
    [脚本章节]Overview: The most important classes 重要的类
    [脚本章节]Overview : Writing Scripts in C# 使用C#书写脚本
    [脚本章节]Overview: Coroutines & Yield 协同程序 & 中断
    [脚本章节]Overview: Instantiate 实例
    [脚本章节]Overview: Member Variables & Global Variables 成员变量 & 全局变量
    [脚本章节]Overview: Vectors 向量
    [脚本章节]Overview: Accessing Other Game Objects 访问其他游戏物体
    [脚本章节]Overview: Accessing Other Components 访问其他组件
    [脚本章节]Overview: Keeping Track of Time 记录时间
    [脚本章节]Overview: Common Operations 常用操作
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

关闭

站长推荐上一条 /1 下一条

手机版|纳金网 ( 闽ICP备08008928号

GMT+8, 2024-4-18 13:28 , Processed in 0.093162 second(s), 34 queries .

Powered by Discuz!-创意设计 X2.5

© 2008-2019 Narkii Inc.

回顶部