SpielBackupAlt/Assets/convert.ps1

6 lines
162 B
PowerShell
Raw Permalink Normal View History

2024-12-26 14:54:06 +00:00
$files = @(Get-ChildItem -Path "*.fbx" -Recurse -File)
foreach ($file in $files)
{
$fullname = $file.fullname
.\FBX2glTF-windows-x64.exe $fullname
}