Full Template for ticket #1

This commit is contained in:
DavidWyand-GG 2012-09-19 11:54:25 -04:00
parent 74f265b3b3
commit f439dc8dcd
2150 changed files with 286240 additions and 0 deletions

View file

@ -0,0 +1,20 @@
<?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", "Full" );
// Include Web Deployment module
includeModule( 'webDeploy' );
// Enable for optional minidump debugging support
// addProjectDefine( 'TORQUE_MINIDUMP' );
Torque3D::endConfig();
?>

View file

@ -0,0 +1,11 @@
<?php
// Configure Torque 3D
Torque3D::beginConfig( "mac", "Full" );
// Include Web Deployment module
includeModule( 'webDeploy' );
Torque3D::endConfig();
?>

View file

@ -0,0 +1,12 @@
<?php
// This file is used to add your project specific code to the Torque 3D Game Engine
// by default we add the project's source folders recursively
addSrcDir('../source', true);
// Here is an example of how to include your project specific code
// In this case all the code in the "custom" folder in your project's source directory would be added
// addSrcDir('../source/custom');
?>

View file

@ -0,0 +1,41 @@
<?php
class WebDeploymentWindows
{
public static $plugin = "WebFullTemplate";
//------ NP plugin settings
// The plugin MUST begin with NP for Firefox to recognize it
// setup in project.conf
public static $npPluginName = "";
public static $company = "My Game Company";
public static $companyKey = "mygamecompany";
public static $productName = "My Web Game";
public static $version = "1.0";
public static $description = "My Web Game Plugin";
// Before you should specify a unique MIME type for your game
public static $mimeType = "x-fulltemplateplugin";
//------ ActiveX plugin settings
// setup in project.conf
public static $axPluginName = "";
// Before shipping the UUID should be changed to unique numbers for your game
// This UUID is used by CLSID in object tag in your site's html
public static $axWebGameLibUUID = "D62D1B36-253D-4218-B033-5ACE0B42B8BF";
// Other UUID used by registry
public static $axAppUUID = "AB7615A3-A918-488B-B128-96DD62D0AE36";
public static $axWebGameUUID = "5240D24D-FBCE-4AF2-99FC-4C7AD4318E91";
public static $axWebGameCtrlUUID = "FC143328-E29C-4BC4-8C83-618FEB562532";
};
?>

View file

@ -0,0 +1,20 @@
<?php
class WebDeploymentOSX
{
// setup in project.conf
public static $safariPluginName = "";
public static $identifier = "com.mygamecompany.fulltemplateplugin";
public static $description = "Full Template Plugin";
public static $version = "1.0";
// Before you should specify a unique MIME type for your game
public static $mimeType = "x-fulltemplateplugin";
};
?>