脱力駆動開発記

ゲームアプリを作るエンジニアの技術メモ

MENU

Converting invalid MinMaxAABB というエラー

作業中にConverting invalid MinMaxAABB
というよくわからんエラーが出る。
f:id:cocokyoro:20151125003246p:plain
バージョンは5.2.2f1

エラー起きてるクラスとメソッド
UnityEditor.DockArea:OnGUI()

エディタのGUI周りのエラーっぽいけど、今いじってるプロジェクトは特にエディタ拡張していない。

フォーラムのスレ見たら同じようなエラー出てる人いた。
Invalid AABB errors | Unity Community

いろんな箇所で起きてるっぽいんだけども、自分のと似たような環境でかつ解決した人の投稿は以下だった。

> I've been looking into this too when it randomly appeared in a place that had no issues before:

> it happens when I set the position of a rectTransform and if BOTH 'Scene' and 'Game' views are visible.

> This is totally an editor bug imho, but having game and scene in tabs solves the issue. too bad for your convenient work layout.

rectTransformを配置、つまりuguiCanvas上になんかしらを描画していて、かつSceneビューとGameビューが同時に見えていると起きる。らしい。

つまり
f:id:cocokyoro:20151125004137p:plain
がだめで
f:id:cocokyoro:20151125004116p:plain
なら大丈夫

...なぜ?w

確かにこれで起きなくなったけど、なんか気持ち悪い。
5.3で直ってるのかな。