SpielBackupAlt/Assets/convert.ps1

6 lines
162 B
PowerShell
Executable File

$files = @(Get-ChildItem -Path "*.fbx" -Recurse -File)
foreach ($file in $files)
{
$fullname = $file.fullname
.\FBX2glTF-windows-x64.exe $fullname
}