Game Development Community

3D AA Kit Issue

by Elliot Franford · in Torque Developer Network · 07/19/2011 (9:02 pm) · 2 replies

Sorry for the newbie question. I just built the new 3D AA Kit in Toque 3D Pro 1.1 in VS 2010 and now I'm seeing these lines. What's the deal with these green lines? Anyone know how to turn them off?

i.imgur.com/OKlvS.png
Thanks,
Elliot

About the author

I graduated from Champlain College with a BS in Software Engineering and. I enjoy music, games (board and video), and photography. I am a C++/C# programmer at heart but dabble here and there with scripting.

Recent Threads


#1
07/19/2011 (10:04 pm)
This is the debug build doing its thing with the camera. You're seeing the raycasts, and the white boxes are for player collision with climbing, ledging, etc. Just open up the console and use this command to turn them off and on:

DebugDraw->toggleDrawing();

More info
#2
08/09/2011 (8:41 pm)
Awesome. I guess I forgot to click post with the thank you I wrote up. Sorry that this is coming in so late.

Thanks Brian!