コガネブログ

平日更新を目標に Unity や C#、Visual Studio、ReSharper などのゲーム開発アレコレを書いていきます

【Unity】Too many sprite tiles on Image "XXXX". The tile size will be increased.

概要

Too many sprite tiles on Image "XXXX". The tile size will be increased. 
To remove the limit on the number of tiles, 
set the Wrap mode to Repeat in the Image Import Settings
UnityEditor.Undo:Internal_CallWillFlushUndoRecord()
  • Image オブジェクトの Image Type を「Tiled」にしているが
    Image オブジェクトに設定しているスプライトの Wrap Mode が
    「Repeat」になっていないとコンソールに上記のエラーが表示されることがある
  • スプライトの Wrap Mode を「Repeat」に変更すると直る