But what happens when you are working on a locked-down school computer, a corporate laptop, or a friend’s machine where you cannot install admin-privilege software? You need a .
@echo off set BLENDER_PATH=X:\PortableRWTools\BlenderPortable\blender.exe set COLLADA2DFF_PATH=X:\PortableRWTools\Collada2DFF\collada2dff.exe for %%f in (*.obj) do ( echo Converting %%f to DAE... %BLENDER_PATH% --background --python convert_obj_to_dae.py -- %%f echo Converting DAE to DFF... %COLLADA2DFF_PATH% %%~nf.dae %%~nf.dff ) echo Done.
Introduction In the world of 3D modeling for older game engines—particularly Rockstar Games’ RenderWare engine (used in Grand Theft Auto: San Andreas , Vice City , and GTA III )—the DFF file format is king. Meanwhile, the OBJ format is the universal standard for sharing 3D models between modern software like Blender, ZBrush, and Maya.