project.conf 654 B

12345678910111213141516171819202122
  1. <?php
  2. // Set this true to enable hifi networking instead of standard.
  3. // In general ... hifi is designed to better deal with fast
  4. // moving players in close proximity to each other, such as
  5. // a racing game.
  6. $TORQUE_HIFI_NET = false;
  7. // Set this to true to enable the ExtendedMove class. This
  8. // allows the passing of absolute position and rotation input
  9. // device information from the client to the server.
  10. $TORQUE_EXTENDED_MOVE = false;
  11. // Configure Torque 3D
  12. Torque3D::beginConfig( "win32", "Empty" );
  13. // Enable for optional minidump debugging support
  14. // addProjectDefine( 'TORQUE_MINIDUMP' );
  15. Torque3D::endConfig();
  16. ?>