godotengine / tps-demo

Godot Third Person Shooter with high quality assets and lighting
Other
955 stars 166 forks source link

Remove dangling `.import` files with no source asset #185

Closed Calinou closed 2 weeks ago

Calinou commented 2 weeks ago

Command used to list dangling .import files:

shopt -s globstar
for file in **/*.import; do ls ${file//.import/} > /dev/null; done