Skip to content

Instantly share code, notes, and snippets.

@umetsu
Last active July 15, 2016 10:53
Show Gist options
  • Save umetsu/22bf78d944c3aef925794c6306553b66 to your computer and use it in GitHub Desktop.
Save umetsu/22bf78d944c3aef925794c6306553b66 to your computer and use it in GitHub Desktop.
Unity触っていて知ったことや気づいたことを雑にまとめておく

Prefab型がほしい

PrefabをInstantiateしたあとの動き

  • Instantiate直後はStartメソッドは呼ばれないが、Awakeは呼ばれるっぽい
  • StartでGetComponentしたものをメンバに保存するようにしているとうまく動かないので注意
  • Unity5の教科書ではメンバにコンポーネントを保持せず、都度GetComponentしていた  * https://www.amazon.co.jp/dp/B01H4ONR86
  • ちなみにコンストラクタでGetComponentしたらどうなるか試してみたらUnityがクラッシュした(Unity 5.3.5p8)

JetBrains Riderで開く

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment