Уроки Unity 3d

Шпаргалка по Unity и краткий справочник

Для всех желающих теперь доступны шпаргалка и краткий справочник по Unity!

Если вы задаете одни и те же вопросы при использовании Unity снова и снова, то эта информация станет для вас спасательным кругом в сложных ситуациях.

Работая над проектами Unity, многие пользователи задают снова и снова одни и те же вопросы:

  • Когда я должен использовать FixedUpdate () поверх Update ()?
  • Как выглядит процесс сбивания сопрограммы?
  • Почему в некоторых случаях не работают 2D пересечения?
  • Какие статические переменные типа Vector3 мне доступны?

На эти простые вопросы можно ответить с помощью обычного поиска в Google, но этот процесс может занять много времени, а также нарушить ход рабочей сессии. Поэтому гораздо удобнее и практичнее использовать шпаргалку, которая поможет не нарушать поток.

PDF версию вы можете скачать по этой ссылке.

В этот документ входят наиболее часто применяемые функций в Unity с использованием C#.

Порядок выполнения событий MonoBehaviour

Упорядочено от первого до последнего метода выполнения:

private void Awake() { /* Called when the script is being loaded */ }

private void OnEnable() { /* Called every time the object is enabled */ }

private void Start() { /* Called on the frame when the script is enabled */ }

private void Update() { /* Called once per frame */ }

private void LateUpdate() { /* Called every frame after Update */ }

private void OnBecameVisible() { /* Called when the renderer is visible by any Camera */ }

private void OnBecameInvisible() { /* Called when the renderer is no longer visible by any Camera */ }

private void OnDrawGizmos() { /* Allows you to draw Gizmos in the Scene View */ }

private void OnGUI() { /* Called multiple times per frame in response to GUI events */ }

private void OnApplicationPause() { /* Called at the end of a frame when a pause is detected */ }

private void OnDisable() { /* Called every time the object is disabled */ }

private void OnDestroy() { /* Only called on previously active GameObjects that have been destroyed */ }

Обновления физики на Fixed Timestep определяются в разделе Edit ⇒ Project Settings ⇒ Time ⇒ Fixed Timestep и могут выполняться более или менее одного раза за фактический кадр.

private void FixedUpdate() { /* Called every Fixed Timestep */ }

Немного позже вы сможете посмотреть информацию раздела «Physics Events» для быстрого ознакомления со связанными физическими методами.

Действия с GameObject

/* Create a GameObject */

Instantiate(GameObject prefab);

Instantiate(GameObject prefab, Transform parent);

Instantiate(GameObject prefab, Vector3 position, Quaternion rotation);

/* In Practice */

Instantiate(bullet);

Instantiate(bullet, bulletSpawn.transform);

Instantiate(bullet, Vector3.zero, Quaternion.identity);

Instantiate(bullet, new Vector3(0, 0, 10), bullet.transform.rotation);

 

/* Destroy a GameObject */

Destroy(gameObject);    /* Finding GameObjects */

GameObject myObj = GameObject.Find("NAME IN HIERARCHY");

GameObject myObj = GameObject.FindWithTag("TAG");
 

/* Accessing Components */

Example myComponent = GetComponent<Example>();

AudioSource audioSource = GetComponent<AudioSource>();

Rigidbody rgbd = GetComponent<Rigidbody>();

Справочник по работе с векторами

X = Влево/Вправо; Y = Вверх/Вниз; Z = Вперед/Назад

Vector3.right /* (1, 0, 0) */   Vector2.right /* (1, 0) */

Vector3.left /* (-1, 0, 0) */   Vector2.left /* (-1, 0) */

Vector3.up /* (0, 1, 0) */      Vector2.up /* (0, 1) */

Vector3.down /* (0, -1, 0) */   Vector2.down /* (0, -1) */

Vector3.forward /* (0, 0, 1) */

Vector3.back /* (0, 0, -1) */

Vector3.zero /* (0, 0, 0) */    Vector2.zero /* (0, 0) */

Vector3.one /* (1, 1, 1) */     Vector2.one /* (1, 1) */

float length = myVector.magnitude /* Length of this Vector */

myVector.normalized /* Keeps direction, but reduces length to 1 */

Переменные времени

/* The time in seconds since the start of the game */

float timeSinceStartOfGame = Time.time;
 

/* The scale at which the time is passing */

float currentTimeScale = Time.timeScale;

/* Pause time */

Time.timeScale = 0;

/* The time in seconds it took to complete the last frame */

/* Use with Update() and LateUpdate() */

float timePassedSinceLastFrame = Time.deltaTime; 

/* The interval in seconds at which physics and fixed frame rate updates are performed */

/* Use with FixedUpdate() */

float physicsInterval =  Time.fixedDeltaTime;

Физические события

/* Both objects have to have a Collider and one object has to have a Rigidbody for these Events to work */

private void OnCollisionEnter(Collision hit) { Debug.Log(gameObject.name + " just hit " + hit.gameObject.name); }

private void OnCollisionStay(Collision hit) { Debug.Log(gameObject.name + " is hitting " + hit.gameObject.name); }

private void OnCollisionExit(Collision hit) { Debug.Log(gameObject.name + " stopped hitting " + hit.gameObject.name); }

 
/* Trigger must be checked on one of the Colliders */

private void OnTriggerEnter(Collider hit) { Debug.Log(gameObject.name + " just hit " + hit.name); }

private void OnTriggerStay(Collider hit) { Debug.Log(gameObject.name + " is hitting " + hit.name); }

private void OnTriggerExit(Collider hit) { Debug.Log(gameObject.name + " stopped hitting " + hit.name); }

 

/* For 2D Colliders just add 2D to the Method name and the Parameter Type */

private void OnCollisionEnter2D(Collision2D hit) { }

private void OnCollisionStay2D(Collision2D hit) { }

private void OnCollisionExit2D(Collision2D hit) { }

private void OnTriggerEnter2D(Collider2D hit) { }

private void OnTriggerStay2D(Collider2D hit) { }

private void OnTriggerExit2D(Collider2D hit) { }

Сопрограммы

/* Create a Coroutine */

private IEnumerator CountSeconds(int count = 10)

{

  for (int i = 0; i <= count; i++) {

    Debug.Log(i + " second(s) have passed");

    yield return new WaitForSeconds(1.0f);

  }

}


/* Call a Coroutine */

StartCoroutine(CountSeconds());

StartCoroutine(CountSeconds(10));




/* Call a Coroutine that may need to be stopped */

StartCoroutine("CountSeconds");

StartCoroutine("CountSeconds", 10);

/* Stop a Coroutine */

StopCoroutine("CountSeconds");

StopAllCoroutines();


/* Store and call a Coroutine from a variable */

private IEnumerator countSecondsCoroutine;


countSecondsCoroutine = CountSeconds();

StartCoroutine(countSecondsCoroutine);


/* Stop a stored Coroutine */

StopCoroutine(countSecondsCoroutine);


/* Coroutine Return Types */

yield return null; // Waits until the next Update() call

yield return new WaitForFixedUpdate(); // Waits until the next FixedUpdate() call

yield return new WaitForEndOfFrame(); // Waits until everything this frame has executed

yield return new WaitForSeconds(float seconds); // Waits for game time in seconds

yield return new WaitUntil(() => MY_CONDITION); // Waits until a custom condition is met

yield return new WWW("MY/WEB/REQUEST"); // Waits for a web request

yield return StartCoroutine("MY_COROUTINE"); // Waits until another Coroutine is completed

Данные для вызова справки

if (Input.GetKeyDown(KeyCode.Space)) { Debug.Log("Space key was Pressed"); }

if (Input.GetKeyUp(KeyCode.W)) { Debug.Log("W key was Released"); }

if (Input.GetKey(KeyCode.UpArrow)) { Debug.Log("Up Arrow key is being held down"); }




/* Button Input located under Edit >> Project Settings >> Input */

if (Input.GetButtonDown("ButtonName")) { Debug.Log("Button was pressed"); }

if (Input.GetButtonUp("ButtonName")) { Debug.Log("Button was released"); }

if (Input.GetButton("ButtonName")) { Debug.Log("Button is being held down"); }

Горячие клавиши

Что делать дальше?

Хотите узнать больше возможностей Unity? Обратите ваше внимание на серию уроков по этому движку

Перевод
Оригинал на англ.
Показать еще

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *

Back to top button