Skip to content

Commit 13458fe

Browse files
committed
remove log
1 parent eb0de7f commit 13458fe

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

app/Assets/UniTexturePackerImporter/Editor/UniTexturePackerImporter.cs

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -202,19 +202,11 @@ string[] movedFromAssetPaths
202202
// バッチモードの時は起動しないように
203203
if ( Application.isBatchMode ) return;
204204

205-
if ( settings == null )
206-
{
207-
Debug.LogWarning( "UniTexturePackerImporterSettings.asset が存在しません" );
208-
return;
209-
}
205+
if ( settings == null ) return;
210206

211207
var pathList = settings.PathList;
212208

213-
if ( pathList == null || pathList.Length <= 0 )
214-
{
215-
Debug.LogWarning( "UniTexturePackerImporterSettings.asset の Path List が設定されていません", settings );
216-
return;
217-
}
209+
if ( pathList == null || pathList.Length <= 0 ) return;
218210

219211
var atlasDataList = importedAssets
220212
.Where( c => pathList.Any( p => c.Contains( p ) ) )

0 commit comments

Comments
 (0)