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