fix: make file filter more friendly

This commit is contained in:
Varylios 2025-11-24 19:25:28 +01:00
parent 1d66ef2fe3
commit 928f26f393

View file

@ -6,8 +6,8 @@ const CONFIRM_POPUP : PackedScene = preload("uid://cxn3x8dq8vawa")
const SCENE_DIR_PATTERN : String = "res://\\w+/(Scenes|Map \\d+)/$"
const SCENE_FILE_PATTERN : String = "([^/]*)\\.tscn$"
const RESOURCE_FILE_PATTERN : String = "([^/]*)\\.tres$"
const SCENE_FILE_PATTERN : String = "([^/]*)\\.t?scn$"
const RESOURCE_FILE_PATTERN : String = "([^/]*)\\.t?res$"
const TOWER_DIR : String = "res://Towers/Scenes/"
const ENEMY_DIR : String = "res://Enemies/Scenes/"