当前位置:   article > 正文

Unity3D常用API

unity3d常用api

版权声明: https://blog.csdn.net/u011360242/article/details/77046732

Unity3D常用API总结

一. MonoBehaviour类及查询API

MonoBehaviour是每个脚本的基类.

MonoBehaviour常用方法及调用顺序

  1. //最开始调用,做一些初始化工作。建议少用,此刻物体可能还没有实例化出来,会影响程序执行顺序。
  2. void Awake(){}
  3. // 不是很紧急的初始化,一般放在Start里面来做。仅在Update函数第一次被调用前调用。
  4. void Start(){}
  5. //用户点击检视面板的Reset按钮或者首次添加该组件时被调用。此函数只在编辑模式下被调用。Reset最常用于在检视面板中给定一个最常用的默认值。
  6. void Reset(){}
  7. // 每一帧调用一次,帧间隔时间有可能改变。
  8. void Update(){}
  9. //以相同时间间隔调用,用在力学更新效果中。执行在Update之前。
  10. void FixedUpdate(){}
  11. //在Update和FixedUpdate调用之后调用。一般人物的移动放在Update中,而摄像机的跟进变化放到FixedUpdate中。确保两个独立,一前一后,不产生错误。
  12. void LateUpdate(){}
  13. //On开头的方法,是由其他事件触发调用的。
  14. //物体被删除时调用
  15. void OnDestroy(){}
  16. //物体启用时被调用
  17. void OnEnable(){}
  18. //物体被禁用时调用
  19. void OnDisable(){}
  20. //这个函数会每帧调用好几次(每个事件一次),GUI显示函数只能在OnGUI中调用
  21. void OnGUI(){}

下图是单个脚本内部方法的调用顺序:
这里写图片描述

查询API:游戏蛮牛Unity3D-API

二. Input类及脚本字段属性在检视面板中的运用

输入系统的接口.
getaxis、getkey、getbutton、getjoystick等函数。

为了提高输入方式在代码中的效率,推荐用GetButton()方法,而不是GetKey().GetButton根据不同的设备进行对应的按键输入,比如手柄,PC,手机 etc.

Unity中定制按钮的方式
Edit–>project setting–>Input
具体按键设定规则见:Unity圣典Input输入

GetKey()、GetKeyDown()、GetKeyUp()方法:

  1. // 每一帧调用一次,帧间隔时间有可能改变。
  2. void Update()
  3. {
  4. //KeyCode为枚举类
  5. //GetKey方法:只要按下就会执行 直到不按 执行不止一次
  6. Input.GetKey(KeyCode.A);
  7. //GetKeyDown:按下按键执行 执行一次
  8. Input.GetKeyDown(KeyCode.A);
  9. //GetKeyDown:按下后松开按键执行 执行一次
  10. Input.GetKeyUp(KeyCode.A);
  11. //以上方法返回布尔值
  12. }

GetButton()、GetButtonDown()、GetButtonUp()方法:

  1. // 每一帧调用一次,帧间隔时间有可能改变。
  2. void Update()
  3. {
  4. //GetButton方法括号中的值为buttonName(按钮别称) 可在相关文档中查阅
  5. //GetButton方法:只要按下就会执行 直到不按 执行不止一次
  6. Input.GetButton("Jump");
  7. //GetButtonDown:按下按键执行 执行一次
  8. Input.GetButtonDown("Jump");
  9. //GetButtonDown:按下后松开按键执行 执行一次
  10. Input.GetButtonUp("Jump");
  11. //以上方法返回布尔值
  12. }

GetAxis() 获取轴

根据坐标轴名称返回虚拟坐标系中的值。
使用控制器和键盘输入时此值范围在-1到1之间。如果坐标轴设置为鼠标运动增量,鼠标增量乘以坐标轴灵敏度的范围将不是-1到1 。

C#脚本:

  1. // A very simplistic car driving on the x-z plane.
  2. // 一个十分简单的在x-z平面的驾车例子
  3. using UnityEngine;
  4. using System.Collections;
  5. public class example : MonoBehaviour {
  6. public float speed = 10.0F;//移动速度
  7. public float rotationSpeed = 100.0F;//旋转速度
  8. void Update() {
  9. // Get the horizontal and vertical axis.
  10. //获取横向和纵向坐标轴
  11. // By default they are mapped to the arrow keys.
  12. //默认情况下他们关联到方向键上
  13. // The value is in the range -1 to 1
  14. //值的范围是在-11之间
  15. float translation = Input.GetAxis("Vertical") * speed;
  16. float rotation = Input.GetAxis("Horizontal") * rotationSpeed;
  17. // Make it move 10 meters per second instead of 10 meters per frame...
  18. // 使它每帧移动10米变为每秒移动10米...
  19. translation *= Time.deltaTime;
  20. rotation *= Time.deltaTime;
  21. // Move translation along the object's z-axis
  22. //沿着z轴平移对象
  23. transform.Translate(0, 0, translation);
  24. // Rotate around our y-axis
  25. //以我们的y轴为中心旋转
  26. transform.Rotate(0, rotation, 0);
  27. }
  28. }
  1. // Performs a mouse look.
  2. //执行一个鼠标观察
  3. using UnityEngine;
  4. using System.Collections;
  5. public class example : MonoBehaviour {
  6. public float horizontalSpeed = 2.0F;
  7. public float verticalSpeed = 2.0F;
  8. void Update() {
  9. // Get the mouse delta. This is not in the range -1...1
  10. //获取鼠标增量,范围不在-1...1
  11. float h = horizontalSpeed * Input.GetAxis("Mouse X");
  12. float v = verticalSpeed * Input.GetAxis("Mouse Y");
  13. transform.Rotate(v, h, 0);
  14. }
  15. }

GetJoystickNames() 获取控制杆名称列表

返回一个用来描述已连接的控制杆的字符串集合。
它可以用在用户输入设置界面 –这样,你就可以把显示的标签”Joystick 1”换成意义更明确的名字像”Logitech WingMan”,读取不同控制器的值,你需要分别为各个控制器的数字指定指方向轴如果你想将其使用在输入设置中。

C#脚本:

  1. // Prints a joystick name if movement is detected.
  2. //如果检测到移动就输出一个控制杆名称
  3. using UnityEngine;
  4. using System.Collections;
  5. public class example : MonoBehaviour {
  6. void Update() {
  7. // requires you to set up axes "Joy0X" - "Joy3X" and "Joy0Y" - "Joy3Y" in the Input Manger
  8. //你需要在输入管理器中设置方向轴"Joy0X" - "Joy3X""Joy0Y" - "Joy3Y"
  9. int i = 0;
  10. while (i < 4) {
  11. if (Mathf.Abs(Input.GetAxis("Joy" + i + "X")) > 0.2F || Mathf.Abs(Input.GetAxis("Joy" + i + "Y")) > 0.2F)
  12. Debug.Log(Input.GetJoystickNames()[i] + " is moved");
  13. i++;
  14. }
  15. }
  16. }

脚本字段属性在检视面板中的运用:

  1. // Prints a joystick name if movement is detected.
  2. //如果检测到移动就输出一个控制杆名称
  3. using UnityEngine;
  4. using System.Collections;
  5. public class example : MonoBehaviour {
  6. //public修饰的变量可以在检视面板中显示
  7. //private修饰的不能显示
  8. //可以显示的GameObject类型的数组
  9. //在检视面板中有Size(数组大小)和Element(元素)两个属性
  10. public GameObject[] gameObject = new GameObject[10];
  11. //可以显示的一个Rigidbody类型的变量
  12. public Rigidbody rigidbody = new Rigidbody();
  13. //不能显示的string类型字符串
  14. private string NPCName = "Max";
  15. //可以显示的int类型数值
  16. public int Score = 11;
  17. //自动补全 在脚本中定义的初始值会在检视面板中显示
  18. public int Number { get; set; }
  19. void strat(){}
  20. void update(){}
  21. }

三.Time类及单例模式实现

常用Time.deltaTime

在Update/LateUpdate中打印Time.deltaTime时间是不固定的,是一个动态变化值,是前两帧之间时间的差值。

在FixedUpdate中打印Time.deltaTime时间是固定的。

deltaTime() 增量时间

以秒计算,完成最后一帧的时间(只读)。
使用这个函数使和你的游戏帧速率无关。

放在Update()函数中的代码是以帧来执行的.如果我们需要物体的移动以秒来执行.我们需要将物体移动的值乘以Time.deltaTime。

如果你加或减一个每帧改变的值,你应该与Time.deltaTime相乘。当你乘以Time.deltaTime实际表示:每秒移动物体10米,而不是每帧10米。

当从MonoBehaviour的FixedUpdate里调用时,返回固定帧速率增量时间(fixedDeltaTime)。

请注意从OnGUI里你不应该依赖于Time.deltaTime,因为OnGUI可以在每帧被多次调用并且每个调用deltaTime将持有相同的值,直到下一帧再次更新。

C#脚本:

  1. using UnityEngine;
  2. using System.Collections;
  3. public class example : MonoBehaviour {
  4. void Update() {
  5. // Move the object 10 meters per second!
  6. //每秒移动物体10
  7. float translation = Time.deltaTime * 10;
  8. transform.Translate(0, 0, translation);
  9. }
  10. }

单例模式singleton

单例仅允许被实例一次,这就保证了他在各个程序模块间的唯一性。

  1. //一般使用单例模式时,类名可能为GameManager
  2. //通常用于控制游戏流程 哪个关卡 哪一步 角色信息的记录
  3. //排行榜 积分表等
  4. //在游戏中,单例模式一般在数据的保存和读取时用到
  5. private static ModelLocator instance;
  6. public static ModelLocator getInstance{
  7. get{
  8. if(instance==null){
  9. instance=new ModelLocator();
  10. }
  11. return instance;
  12. }
  13. }

详细的Unity中单例模式的应用,百度”Unity中的单例模式”
二周目的时候详细补充在这

四.GameObject类和对象,多种查找GO的方法

gameObject(g小写)代表当前脚本挂载的游戏对象本身。
若使用this.xxx的话调用的是脚本本身而不是游戏对象

GameObject(G大写)代表游戏对象类。

查找GO并赋值Find族函数:

private GameObject go;

go = GameObject.Find(“Cube”);//根据名字查找对象

go = GameObject.FindGameObjectWithTag(string tag);//根据标签查找

go.activeSelf 游戏物体是否被激活(true or false)

go.activeInHierarchy 游戏物体所处层级的父级是否被激活(true or false)


理解游戏组件和游戏对象的关系

创建一个cube,并不是创建一个cube对象,而是创建了挂载着filter和renderer组件的对象


五.Destroy方法和Transform对象(包括对象移动)

Destroy方法:

销毁一个游戏物体。
Destroy(go);
Destroy(go, 3);//等待3s销毁

Transform对象:

位置transform.position(注意是小写t,是monobehaviour类中的默认字段,表示当前脚本挂在的游戏物体的transform信息)

旋转transform.rotation
缩放transform.scale
向量及运算 Vector3

在Unity中为左手坐标系
这里写图片描述

移动对象:

Transform.Translate

Transform.Rotate

transform.position.x获取x轴坐标

Mathf.PingPong 乒乓
让数值t在 0到length之间往返。t值永远不会大于length的值,也永远不会小于0。
返回值将在0和length之间来回移动。

  1. //Mathf.PingPong 乒乓 例子
  2. using UnityEngine;
  3. using System.Collections;
  4. public class example : MonoBehaviour {
  5. void Update() {
  6. // Set the x position to loop between 0 and 3
  7. //设置x位置循环在03之间
  8. transform.position = new Vector3(Mathf.PingPong(Time.time, 3), transform.position.y, transform.position.z);
  9. }
  10. }

六.Lerp插值运算

插值运算:位置Vector3.Lerp 旋转Vector3.Slerp
Quaternion targetrotation = Quaternion.LookRotation(player.position - transform.position);
//根据初始和目标位置计算出对应的旋转角度

插值运算不仅仅可以作为位置、旋转、缩放等计算,还可以做为灯光亮度等的差值计算,也就是说只要是从一个确定状态渐进过渡到另一个确定状态的计算,都可以用到插值运算。
位置插值:三维向量
Vector3 targetpostion = player.position + new Vector3(0, 2.42f, -2.42f);
transform.position = Vector3.Lerp(transform.position, targetpostion, speed * Time.deltaTime);
旋转插值:三维角度
Quaternion targetrotation = Quaternion.LookRotation(player.position - transform.position);
transform.rotation = Quaternion.Slerp(transform.rotation, targetrotation, speed * Time.deltaTime);
灯光亮度插值:浮点值
public float newIntensity = 5;
light.intensity = Mathf.Lerp(light.intensity, newIntensity, speed * Time.deltaTime);
//light.intensity位当前灯光的值
颜色插值:
Color.Lerp(currentColor, newColor, speed * Time.deltaTime);
其他比如Material.Lerp、Mathf.InverseLerp等,可以通过查手册了解。

七.Instantiate实例化prefab对象

所有的C#对象都是继承于object类,包括int、float这些函数类型,当然也包括Monobehaviour、GameObject这些类。

  1. static function Instantiate(original: Object, position: Vector3, rotation: Quaternion): Object;
  2. public GameObject Spawn()
  3. {
  4. /* 生成prefab的实例化,因为默认是object类型,所以需要强转为GameObject */
  5. return GameObject.Instantiate(prefab, transform.position, transform.rotation) as GameObject;
  6. }

其他方法:
GameObject.GetComponent:通过游戏物体获取其组件
CharacterController cc = this.GetComponent();
Animator animator = this.GetComponent();
Component.GetComponent:通过游戏物体的组件获取其其他组件Transform player = GameObject.FindGameObjectWithTag(Tags.player).transform;
PlayerATKAndDamage playerAtkAndDamage = player.GetComponent();
//PlayerATKAndDamage是一个脚本AddForce:添加力AddTurque:添加扭矩

八.协同(协程)以及yield

一般用来在脚本中增加延时效果。因为在Start()或者Update()中是不能直接延时的(WaitForSecond())等待某个操作结束之后再执行代码字符串做为参数:

  1. void Start ()
  2. {
  3. StartCoroutine("DoSomething", 2.0);
  4. yield WaitForSeconds (1);//可以在任意位置使用yield语句。yield的返回值控制何时恢复协同程序向下执行。这里等待1s之后才会接着执行下面的语句。
  5. StopCoroutine("DoSomething");
  6. }
  7. void DoSomething (float someParameter)
  8. {
  9. while (true)
  10. {
  11. print("DoSomething Loop");
  12. // 停止协同程序的执行并返回到主循环直到下一帧.
  13. yield;
  14. }
  15. }

IEnumerator做为参数:

  1. IEnumerator Start()
  2. {
  3. StartCoroutine("DoSomething", 2.0F); //StartCoroutine(DoSomething(2.0F)); 使用IEnumerator做参数不能用StopCoroutine停用。
  4. yield return new WaitForSeconds(1);
  5. StopCoroutine("DoSomething"); //请注意只有StartCoroutine使用一个字符串方法名时才能用StopCoroutine停用之。
  6. }
  7. IEnumerator DoSomething(float someParameter)
  8. {
  9. while (true) {
  10. print("DoSomething Loop");
  11. yield return null;
  12. }
  13. }

开启协同:
StartCoroutine(string methodName):字符串作为参数可以开启线程并在协程结束前终止线程;开启协程时最多只能传递一个参数,并且性能消耗会更大一点
StartCoroutine(IEnumerator routine):只能等待协程的结束而不能随时终止(除非使用StopAllCoroutines()方法)
中止协同:
StopCoroutine(string methodName):中止一个协同,只能终止该MonoBehaviour中的协同程序
StopAllCoroutines():中止所有协同,只能终止该MonoBehaviour中的协同程序
将协同程序所在gameobject的active属性设置为false,当再次设置active为ture时,协同程序并不会再开启。

yield

yiled:和协同密切相关的一个概念,一个协同程序在执行过程中,可以在任意位置使用yield语句。yield的返回值控制何时恢复协同程序向下执行。
yield不可单独使用

  需要与return配合使用,例如:

  1 yield return 0; //等0帧

  2 yield return 1; //等1帧

  3 yield return WaitForSeconds(3.0); //等待3秒

 4 yield return null;//立即返回调用点

  所有使用yield的函数必须将返回值类型设置为IEnumerator类型,例如:
  

IEnumerator DoSomeThingInDelay() {...}

当然,你也可以把Start()返回值定义为IEnumerator类型,那么在Start里面也可以使用yield延时返回,但不推荐这样做:

  1. IEnumerator Start()
  2. {
  3. StartCoroutine("DoSomething", 2.0F); //StartCoroutine(DoSomething(2.0F)); 使用IEnumerator做参数不能用StopCoroutine停用。
  4. yield return new WaitForSeconds(1);
  5. StopCoroutine("DoSomething"); //请注意只有StartCoroutine使用一个字符串方法名时才能用StopCoroutine停用之。
  6. }

你也可以把StartCoroutine和yiled return结合起来使用,保证函数执行顺序,这样调用能保证,init1,init2,init3一个一个的执行,不至于出现后面执行的代码引用一个前面未初始化的变量:

  1. IEnumerator Init()
  2. {
  3. yield return StartCoroutine(init1());
  4. Debug.Log("init1 finish");
  5. yield return StartCoroutine(init2());
  6. Debug.Log("init2 finish");
  7. yield return StartCoroutine(init3());
  8. Debug.Log("init3 finish");
  9. }
  10. IEnumerator init1()
  11. {
  12. // 模拟初始化
  13. yield return new WaitForSeconds(2);//
  14. }
  15. IEnumerator init2()
  16. {
  17. // do somthing..
  18. yield return new WaitForSeconds(2);//
  19. }
  20. IEnumerator init2()
  21. {
  22. // do somthing..
  23. yield return new WaitForSeconds(2);//
  24. }

相关的api总结文章有:
个人开发Unity3d游戏中常用API函数

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/1012295
推荐阅读
相关标签
  

闽ICP备14008679号