Game Development Community

Build error and crash with TX and TXPSK

by Rob Evans · in Torque X Platformer Kit · 02/17/2009 (6:07 am) · 2 replies

Error 1 The command ""F:\Development\IAS\Code\PlatformerDemo1\Game\bin\Xbox 360\Debug\IAS.exe" -exportschema "F:\Development\IAS\Code\PlatformerDemo1\Game\myschema.txschema"" exited with code -532459699. Xbox 360 - IAS

Trying to build a 360 copy of my project but get a crash from the IAS.exe and then the error above in the error list in c# 2005.

Any ideas anyone? I can run the PC version of it just fine!

#1
02/17/2009 (6:50 am)
I believe this is caused by missing a post-build event. Try pasting this in the post build event for the PC and Xbox project.

IF NOT "$(PlatformName)" == "x86" GOTO end
call "$(TargetPath)" -exportschema "$(ProjectDir)myschema.txschema"
echo Torque X Component Schema Generated.
:end
#2
02/17/2009 (6:51 am)
Thanks so much, that did the job. Obviously the exportschema isn't needed for the 360 then?

I'll remember to modify this for future projects... it's in there by default for a new TXPSK game.

Thanks!