File tree Expand file tree Collapse file tree 1 file changed +2
-10
lines changed
app/Assets/UniTexturePackerImporter/Editor Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -202,19 +202,11 @@ string[] movedFromAssetPaths
202
202
// バッチモードの時は起動しないように
203
203
if ( Application . isBatchMode ) return ;
204
204
205
- if ( settings == null )
206
- {
207
- Debug . LogWarning ( "UniTexturePackerImporterSettings.asset が存在しません" ) ;
208
- return ;
209
- }
205
+ if ( settings == null ) return ;
210
206
211
207
var pathList = settings . PathList ;
212
208
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 ;
218
210
219
211
var atlasDataList = importedAssets
220
212
. Where ( c => pathList . Any ( p => c . Contains ( p ) ) )
You can’t perform that action at this time.
0 commit comments