LoginSignup
13
9

More than 5 years have passed since last update.

[Unity]イメージのInspectorに警告が出たときの解消法

Last updated at Posted at 2016-11-03

解消方法:FormatをTrueColorに変更する

下記のような警告(黄色いビックリマーク)が出た際は、InspectorのFormatを「Compressed」から「TrueColor」に変更すると解消できる。

Only pot textures can be compressed to etc1 format

画像のサイズが2のべき乗(2、4、8、16、32、64、128…)になっていないときに表示される。
image

参考:unity 5.1.1で質問です。 2dでプロジェクトを…

Only textures with width/height being multiple of 4 can be compressed to ETC2 format

画像のサイズが4の倍数(4、8、12、16、20…)になっていないときに表示される。
image

参考:Unityの勉強ページ 覚え書きや軽いメモなど

CompressedとTrueColorのざっくりとした違い

Format 圧縮 サイズ 画質(きれいさ) サイズ制限
Compressed あり 軽い 低下する 2のべき乗でないと適用できない
TrueColor なし 重い 低下しない 制限なし
13
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
9