Category Archives: Unity - Page 7

【Unity】OnCollisionEnter2Dで躓いた初歩的なこと

衝突判定をいじり初めて、OnCollisionEnter2Dが呼ばれないことがあり躓いてました。 原因は簡単で、rigidbody2Dのradiusを初期設定のままで動かそうとしていたから…。 値を大きくした …

Read more »

【Unity】Image(Script)のSourceImageを変更する

今日のメモ ランタイム中にSourceImageを変更する。 Image.material.mainTexture Texture texture = Resources.Load(“image path”) as Te …

Read more »

【Unity】Failed to add the asset file size for

今日のエラー Consoleに Failed to add the asset file size for ***.*** なる黄色アイコンの警告がたくさん表示された。 解決法 公式の報告スレより、Unityのバージョン …

Read more »

【Unity】AnimationEvent has no function name specified!

今日のエラー Consoleに ‘(GameObject名)’ AnimationEvent has no function name specified! と赤字で警告が出た。 解決法 Anim …

Read more »

【Unity】uGUIのUI描画や操作性を追加するコンポーネント

文字やイメージといったUIにエフェクトを追加できるコンポーネントがuGUIに標準で備わっていて、簡単便利。 描画に関わるコンポーネント Shadow UIの輪郭に影を付けてくれる。 http://docs.unity3d …

Read more »