Skip to content

Commit

Permalink
Filter out some uninteresting AI files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Damnae committed Apr 29, 2024
1 parent 12a5db5 commit 4e0f305
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/common/datasource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@ export function filterInterestingFiles(file:DataSourceTreeItem) : boolean
return file.type == 'blob' &&
file.path.endsWith('.json') &&
!file.path.endsWith('.layout.json') &&
!file.path.includes('/Camera/')
!file.path.includes('/Camera/') &&
!file.path.startsWith('Adventure/MazeNPC_')
}

export interface DataSourceTreeItem
Expand Down

0 comments on commit 4e0f305

Please sign in to comment.