Unity C# 基本概念 —— 基于官网手册的整理(未完)

一、通过组件操控物体

……scripting is also about modifying Component properties to manipulate GameObjects. The difference, though, is that a script can vary a property’s value gradually over time or in response to input from the user. By changing, creating and destroying objects at the right time, any kind of gameplay can be implemented.

来自http://docs.unity3d.com/Manual/ControllingGameObjectsComponents.html

That’s great!

1. 获取物体上的其他组件 GetComponent

获取

void Start () {

Rigidbody rb = GetComponent();

}

并可以设定该组件的属性值

rb.mass = 10f;

在该组件上使用函数

rb.AddForce(Vector3.up * 10f);

也可以获取另一个脚本

...you can use GetComponent as usual and just use the name of the script class (or the filename) to specify the Component type you want.

= GetComponent<GameController>();

2. 获取其他物体

(1)直接通过inspector指向获取 public GameObject player;

        如果类写的是组件类型可直接调用该物体的该类型组件:

        public Transform playerTransform; (inspector中拖进去还是GameObject)

(2)获取子物体(没懂)

(3)通过名字或tag获取物体:

player = GameObject.Find("MainHeroCharacter");

player = GameObject.FindWithTag("Player");

enemies = GameObject.FindGameObjectsWithTag("Enemy");

二、Event Functions

MonoBehavior下的function集锦:

http://docs.unity3d.com/ScriptReference/MonoBehaviour.html

1. Update Events

Update,FixedUpdate, LateUpdate

2.Initialization Events

Start & Awake

Awake:The Awake function is called for each object in the scene at the time when the scene loads. 

全部Awake会在Start之前完成。多个Awake之间、多个Start之间的执行顺序则是随机的。

3. GUI events

Unity has a system for rendering GUI controls over the main action in the scene and responding to clicks on these controls.

4.Physics events

类似 OnCollisionEnter,OnCollisionStay and OnCollisionExitOnTriggerEnter,OnTriggerStay and OnTriggerExit

三、时间与帧率控制

1.帧率平衡

物体移动时,为避免由于帧率变化导致的移动速度不稳定,引入Time.deltaTime

transform.Translate(0, 0, distancePerSecond * Time.deltaTime);

每秒移动距离固定,每帧移动距离变化

2. Maximum Allowed Timestep

 A limit on the amount of time Unity will spend processing physics and FixedUpdate calls during a given frame update. 一旦超出设定的时间限度,物理引擎就会停下来等待帧刷新完,物体的移动会受影响但不会很明显。

3.游戏时间的加速、减速和暂停 —— Time Scale

Time.timeScale = 0f; 暂停

Time.timeScale = 1f; 恢复正常

The Update function is likely to be called more often than usual when game time is slowed down but thedeltaTimestep reported each frame will simply be reduced.

Other script functions are not affected by the time scale so you can, for example, display a GUI with normal interaction when the game is paused.

Time.fixedDeltaTime也可以在脚本中设定。

4.录屏功能——Capture Framerate

Time.captureFramerate

When the property’s value is set to anything other than zero, game time will be slowed and the frame updates will be issued at precise regular intervals.

string name = string.Format("{0}/{1:D04} shot.png", folder, Time.frameCount );

Application.CaptureScreenshot(name);

四、创造和销毁物体

Instantiate

Instantiate(Object original);

Instantiate(Object original,Vector3 position,Quaternion rotation);

Destroy

// Kills the game object

Destroy (gameObject);

// Removes this script instance from the game object

Destroy (this);

// Removes the rigidbody from the game object

Destroy (rigidbody);

// Kills the game object in 5 seconds after loading the object

Destroy (gameObject, 5);

五、协程Coroutines

不运行完update就跳出

应用于渐变效果或等待(冷却时间)效果

六、脚本执行的顺序

http://docs.unity3d.com/Manual/ScriptCompileOrderFolders.html

七、命名空间Namespaces

全部脚本内容加前缀,防止不同脚本间的命名冲突

namespace Enemy {

public class Controller1 : MonoBehaviour {...}

}

2016.08.05 后面的都看不太懂了,先继续做roguelike教程去了

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,732评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,496评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,264评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,807评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,806评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,675评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,029评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,683评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,704评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,666评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,773评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,413评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,016评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,204评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,083评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,503评论 2 343

推荐阅读更多精彩内容