2012-09-19 11:54:25 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
// Set this true to enable hifi networking instead of standard.
|
|
|
|
|
// In general ... hifi is designed to better deal with fast
|
|
|
|
|
// moving players in close proximity to each other, such as
|
|
|
|
|
// a racing game.
|
|
|
|
|
$TORQUE_HIFI_NET = false;
|
|
|
|
|
|
2013-01-23 01:52:46 -05:00
|
|
|
// Set this to true to enable the ExtendedMove class. This
|
|
|
|
|
// allows the passing of absolute position and rotation input
|
|
|
|
|
// device information from the client to the server.
|
|
|
|
|
$TORQUE_EXTENDED_MOVE = false;
|
|
|
|
|
|
2012-09-19 11:54:25 -04:00
|
|
|
// Configure Torque 3D
|
|
|
|
|
Torque3D::beginConfig( "win32", "Full" );
|
|
|
|
|
|
|
|
|
|
// Enable for optional minidump debugging support
|
|
|
|
|
// addProjectDefine( 'TORQUE_MINIDUMP' );
|
|
|
|
|
|
|
|
|
|
Torque3D::endConfig();
|
|
|
|
|
|
|
|
|
|
?>
|