mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-05 13:30:34 +00:00
20 lines
519 B
Text
20 lines
519 B
Text
<?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;
|
|
|
|
// Configure Torque 3D
|
|
Torque3D::beginConfig( "win32", "Empty" );
|
|
|
|
// Include Web Deployment module
|
|
includeModule( 'webDeploy' );
|
|
|
|
// Enable for optional minidump debugging support
|
|
// addProjectDefine( 'TORQUE_MINIDUMP' );
|
|
|
|
Torque3D::endConfig();
|
|
|
|
?>
|