turbulenz / turbulenz_engine

Turbulenz is a modular 3D and 2D game framework for making HTML5 powered games for browsers, desktops and mobile devices.

Home Page:http://turbulenz.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Apps build

RaphSfeir opened this issue · comments

Hello, I have a very annoying problem : everytime I run "python manage.py apps" in the environment, everything works fine until a .dae file is encountered / loaded.
When a .dae file is loaded (for instance with a command similar to this : "[DAE2JSON] models\white_cube.dae", nothing happens, the command prompt is stuck in an infinite loop...

Therefore I can't load any model for Debris Dodger.

Any idea how I can solve this ? Thanks ! Please tell me if you need more informations !

Try adding --verbose to the end of the "python manage.py apps".
That will tell you the last command it was attempting to run. You should then try running that command separately from the environment e.g.

python -m turbulenz_tools.tools.dae2json -i C:\Development\turbulenz_engine\apps\debrisdodger\assets\models\ship.dae -o _build\assets\models\ship.dae.json --nvtristrip C:\Development\turbulenz_engine\tools\bin\win32\NvTriStripper.exe

Try adding --verbose to that command aswell to get a bit more information out.

Hey, thanks for you're answer ! Just solved it, it was actually my antivirus (Avast) that was secretly blocking the execution... strange thing is that no warning or such appeared, it just blocked it without notifying me.

Hope that helps, cheers.