diff --git a/Templates/Full/DeleteCachedDTSs.bat b/Templates/Full/DeleteCachedDTSs.bat
deleted file mode 100644
index 8f0dc258ea..0000000000
--- a/Templates/Full/DeleteCachedDTSs.bat
+++ /dev/null
@@ -1 +0,0 @@
-for /R %%a IN (*.dae) do IF EXIST "%%~pna.cached.dts" del "%%~pna.cached.dts"
diff --git a/Templates/Full/DeleteCachedDTSs.command b/Templates/Full/DeleteCachedDTSs.command
deleted file mode 100755
index f497316e0b..0000000000
--- a/Templates/Full/DeleteCachedDTSs.command
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-cd "`dirname "$0"`"
-
-for i in $(find . -type f \( -iname "*.dae" \))
-do
- len=$((${#i} - 4))
- file=${i:0:$len}.cached.dts
- if [ -e $file ]
- then
- echo "Removing ${file}"
- rm $file
- fi
-done
-
diff --git a/Templates/Full/DeleteDSOs.bat b/Templates/Full/DeleteDSOs.bat
deleted file mode 100644
index 42228e4b3b..0000000000
--- a/Templates/Full/DeleteDSOs.bat
+++ /dev/null
@@ -1,6 +0,0 @@
-for /R %%a IN (*.cs) do IF EXIST "%%a.dso" del "%%a.dso"
-for /R %%a IN (*.cs) do IF EXIST "%%a.edso" del "%%a.edso"
-for /R %%a IN (*.gui) do IF EXIST "%%a.dso" del "%%a.dso"
-for /R %%a IN (*.gui) do IF EXIST "%%a.edso" del "%%a.edso"
-for /R %%a IN (*.ts) do IF EXIST "%%a.dso" del "%%a.dso"
-for /R %%a IN (*.ts) do IF EXIST "%%a.edso" del "%%a.edso"
diff --git a/Templates/Full/DeleteDSOs.command b/Templates/Full/DeleteDSOs.command
deleted file mode 100755
index f6e805a313..0000000000
--- a/Templates/Full/DeleteDSOs.command
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-cd "`dirname "$0"`"
-
-for i in $(find . -type f \( -iname "*.cs" \))
-do
- file=${i}.dso
- if [ -e $file ]
- then
- echo "Removing ${file}"
- rm $file
- fi
- file=${i}.edso
- if [ -e $file ]
- then
- echo "Removing ${file}"
- rm $file
- fi
-done
diff --git a/Templates/Full/DeletePrefs.bat b/Templates/Full/DeletePrefs.bat
deleted file mode 100644
index e619882103..0000000000
--- a/Templates/Full/DeletePrefs.bat
+++ /dev/null
@@ -1,6 +0,0 @@
-del /s prefs.cs
-del /s config.cs
-del /s banlist.cs
-del /s config.cs.dso
-del /s prefs.cs.dso
-del /s banlist.cs.dso
diff --git a/Templates/Full/DeletePrefs.command b/Templates/Full/DeletePrefs.command
deleted file mode 100755
index 43961562fb..0000000000
--- a/Templates/Full/DeletePrefs.command
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-find "`dirname "$0"`" -type f \( -name "prefs.cs" -or -name "config.cs" -or -name "banlist.cs" -or -name "prefs.cs.dso" -or -name "config.cs.dso" -or -name "banlist.cs.dso" \) -exec rm {} \;
diff --git a/Templates/Full/buildFiles/VisualStudio 2008/projects/Torque.rc b/Templates/Full/buildFiles/VisualStudio 2008/projects/Torque.rc
deleted file mode 100644
index cf88543dad..0000000000
--- a/Templates/Full/buildFiles/VisualStudio 2008/projects/Torque.rc
+++ /dev/null
@@ -1,85 +0,0 @@
-//Microsoft Developer Studio generated resource script.
-//
-#define IDI_ICON1 103
-#define IDI_ICON2 107
-
-// Next default values for new objects
-//
-#ifdef APSTUDIO_INVOKED
-#ifndef APSTUDIO_READONLY_SYMBOLS
-#define _APS_NEXT_RESOURCE_VALUE 108
-#define _APS_NEXT_COMMAND_VALUE 40001
-#define _APS_NEXT_CONTROL_VALUE 1000
-#define _APS_NEXT_SYMED_VALUE 101
-#endif
-#endif
-
-#define APSTUDIO_READONLY_SYMBOLS
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 2 resource.
-//
-#include "windows.h"
-
-/////////////////////////////////////////////////////////////////////////////
-#undef APSTUDIO_READONLY_SYMBOLS
-
-/////////////////////////////////////////////////////////////////////////////
-// English (U.S.) resources
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
-#ifdef _WIN32
-LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
-#pragma code_page(1252)
-#endif //_WIN32
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Icon
-//
-
-// Icon with lowest ID value placed first to ensure application icon
-// remains consistent on all systems.
-IDI_ICON1 ICON DISCARDABLE "torque.ico"
-IDI_ICON2 ICON DISCARDABLE "torque.ico"
-
-#ifdef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// TEXTINCLUDE
-//
-
-1 TEXTINCLUDE DISCARDABLE
-BEGIN
- "resource.h\0"
-END
-
-2 TEXTINCLUDE DISCARDABLE
-BEGIN
- "#include ""windows.h""\r\n"
- "\0"
-END
-
-3 TEXTINCLUDE DISCARDABLE
-BEGIN
- "\r\n"
- "\0"
-END
-
-#endif // APSTUDIO_INVOKED
-
-#endif // English (U.S.) resources
-/////////////////////////////////////////////////////////////////////////////
-
-
-
-#ifndef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 3 resource.
-//
-
-
-/////////////////////////////////////////////////////////////////////////////
-#endif // not APSTUDIO_INVOKED
-
diff --git a/Templates/Full/buildFiles/VisualStudio 2008/projects/torque.ico b/Templates/Full/buildFiles/VisualStudio 2008/projects/torque.ico
deleted file mode 100644
index 22ac1a3d1a..0000000000
Binary files a/Templates/Full/buildFiles/VisualStudio 2008/projects/torque.ico and /dev/null differ
diff --git a/Templates/Full/buildFiles/VisualStudio 2010/projects/Torque.Cpp.Win32.user.props b/Templates/Full/buildFiles/VisualStudio 2010/projects/Torque.Cpp.Win32.user.props
deleted file mode 100644
index d659420b06..0000000000
--- a/Templates/Full/buildFiles/VisualStudio 2010/projects/Torque.Cpp.Win32.user.props
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- $(DXSDK_DIR)\Utilities\bin\x86;$(ExecutablePath)
- $(DXSDK_DIR)\Include;$(IncludePath)
- $(ReferencePath)
- $(DXSDK_DIR)\Lib\x86;$(LibraryPath)
- $(SourcePath)
- $(ExcludePath)
-
-
\ No newline at end of file
diff --git a/Templates/Full/buildFiles/VisualStudio 2010/projects/Torque.Cpp.x64.user.props b/Templates/Full/buildFiles/VisualStudio 2010/projects/Torque.Cpp.x64.user.props
deleted file mode 100644
index 12488dc9b1..0000000000
--- a/Templates/Full/buildFiles/VisualStudio 2010/projects/Torque.Cpp.x64.user.props
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- $(DXSDK_DIR)\Utilities\bin\x64;$(ExecutablePath)
- $(DXSDK_DIR)\Include;$(IncludePath)
- $(ReferencePath)
- $(DXSDK_DIR)\Lib\x64;$(LibraryPath)
- $(SourcePath)
- $(ExcludePath)
-
-
\ No newline at end of file
diff --git a/Templates/Full/buildFiles/VisualStudio 2010/projects/Torque.rc b/Templates/Full/buildFiles/VisualStudio 2010/projects/Torque.rc
deleted file mode 100644
index cf88543dad..0000000000
--- a/Templates/Full/buildFiles/VisualStudio 2010/projects/Torque.rc
+++ /dev/null
@@ -1,85 +0,0 @@
-//Microsoft Developer Studio generated resource script.
-//
-#define IDI_ICON1 103
-#define IDI_ICON2 107
-
-// Next default values for new objects
-//
-#ifdef APSTUDIO_INVOKED
-#ifndef APSTUDIO_READONLY_SYMBOLS
-#define _APS_NEXT_RESOURCE_VALUE 108
-#define _APS_NEXT_COMMAND_VALUE 40001
-#define _APS_NEXT_CONTROL_VALUE 1000
-#define _APS_NEXT_SYMED_VALUE 101
-#endif
-#endif
-
-#define APSTUDIO_READONLY_SYMBOLS
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 2 resource.
-//
-#include "windows.h"
-
-/////////////////////////////////////////////////////////////////////////////
-#undef APSTUDIO_READONLY_SYMBOLS
-
-/////////////////////////////////////////////////////////////////////////////
-// English (U.S.) resources
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
-#ifdef _WIN32
-LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
-#pragma code_page(1252)
-#endif //_WIN32
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Icon
-//
-
-// Icon with lowest ID value placed first to ensure application icon
-// remains consistent on all systems.
-IDI_ICON1 ICON DISCARDABLE "torque.ico"
-IDI_ICON2 ICON DISCARDABLE "torque.ico"
-
-#ifdef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// TEXTINCLUDE
-//
-
-1 TEXTINCLUDE DISCARDABLE
-BEGIN
- "resource.h\0"
-END
-
-2 TEXTINCLUDE DISCARDABLE
-BEGIN
- "#include ""windows.h""\r\n"
- "\0"
-END
-
-3 TEXTINCLUDE DISCARDABLE
-BEGIN
- "\r\n"
- "\0"
-END
-
-#endif // APSTUDIO_INVOKED
-
-#endif // English (U.S.) resources
-/////////////////////////////////////////////////////////////////////////////
-
-
-
-#ifndef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 3 resource.
-//
-
-
-/////////////////////////////////////////////////////////////////////////////
-#endif // not APSTUDIO_INVOKED
-
diff --git a/Templates/Full/buildFiles/VisualStudio 2010/projects/torque.ico b/Templates/Full/buildFiles/VisualStudio 2010/projects/torque.ico
deleted file mode 100644
index 22ac1a3d1a..0000000000
Binary files a/Templates/Full/buildFiles/VisualStudio 2010/projects/torque.ico and /dev/null differ
diff --git a/Templates/Full/buildFiles/VisualStudio 2012/projects/Torque.rc b/Templates/Full/buildFiles/VisualStudio 2012/projects/Torque.rc
deleted file mode 100644
index cf88543dad..0000000000
--- a/Templates/Full/buildFiles/VisualStudio 2012/projects/Torque.rc
+++ /dev/null
@@ -1,85 +0,0 @@
-//Microsoft Developer Studio generated resource script.
-//
-#define IDI_ICON1 103
-#define IDI_ICON2 107
-
-// Next default values for new objects
-//
-#ifdef APSTUDIO_INVOKED
-#ifndef APSTUDIO_READONLY_SYMBOLS
-#define _APS_NEXT_RESOURCE_VALUE 108
-#define _APS_NEXT_COMMAND_VALUE 40001
-#define _APS_NEXT_CONTROL_VALUE 1000
-#define _APS_NEXT_SYMED_VALUE 101
-#endif
-#endif
-
-#define APSTUDIO_READONLY_SYMBOLS
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 2 resource.
-//
-#include "windows.h"
-
-/////////////////////////////////////////////////////////////////////////////
-#undef APSTUDIO_READONLY_SYMBOLS
-
-/////////////////////////////////////////////////////////////////////////////
-// English (U.S.) resources
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
-#ifdef _WIN32
-LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
-#pragma code_page(1252)
-#endif //_WIN32
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Icon
-//
-
-// Icon with lowest ID value placed first to ensure application icon
-// remains consistent on all systems.
-IDI_ICON1 ICON DISCARDABLE "torque.ico"
-IDI_ICON2 ICON DISCARDABLE "torque.ico"
-
-#ifdef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// TEXTINCLUDE
-//
-
-1 TEXTINCLUDE DISCARDABLE
-BEGIN
- "resource.h\0"
-END
-
-2 TEXTINCLUDE DISCARDABLE
-BEGIN
- "#include ""windows.h""\r\n"
- "\0"
-END
-
-3 TEXTINCLUDE DISCARDABLE
-BEGIN
- "\r\n"
- "\0"
-END
-
-#endif // APSTUDIO_INVOKED
-
-#endif // English (U.S.) resources
-/////////////////////////////////////////////////////////////////////////////
-
-
-
-#ifndef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 3 resource.
-//
-
-
-/////////////////////////////////////////////////////////////////////////////
-#endif // not APSTUDIO_INVOKED
-
diff --git a/Templates/Full/buildFiles/VisualStudio 2012/projects/torque.ico b/Templates/Full/buildFiles/VisualStudio 2012/projects/torque.ico
deleted file mode 100644
index 22ac1a3d1a..0000000000
Binary files a/Templates/Full/buildFiles/VisualStudio 2012/projects/torque.ico and /dev/null differ
diff --git a/Templates/Full/buildFiles/compile.bat b/Templates/Full/buildFiles/compile.bat
deleted file mode 100644
index 3ca5191519..0000000000
--- a/Templates/Full/buildFiles/compile.bat
+++ /dev/null
@@ -1,67 +0,0 @@
-@echo off
-SETLOCAL
-
-REM Handle our optional parameters
-SET COMPILER=%1
-SET CONFIG=%2
-
-IF NOT DEFINED COMPILER SET COMPILER=VS2008
-IF NOT DEFINED CONFIG SET CONFIG=Release
-
-REM Setting up some variables
-
-REM Detecting the correct Program Files
-IF DEFINED PROGRAMFILES(X86) SET PROGRAMROOT=%ProgramFiles(x86)%
-IF NOT DEFINED PROGRAMROOT SET PROGRAMROOT=%ProgramFiles%
-
-REM First the defaults (set up for VS2008 by default)
-SET ENVVAR="%PROGRAMROOT%\Microsoft Visual Studio 9.0\VC\vcvarsall.bat"
-SET BUILDCMD=devenv.com
-SET OPTIONS=/useenv /build "%CONFIG%|Win32"
-SET BUILDDIR="VisualStudio 2008"
-
-REM Handle the non-defaults
-IF %COMPILER% == VS2010 SET ENVVAR="%PROGRAMROOT%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
-
-IF EXIST "%PROGRAMROOT%\Xoreax\IncrediBuild\BuildConsole.exe" SET BUILDCMD="%PROGRAMROOT%\Xoreax\IncrediBuild\BuildConsole.exe"
-IF EXIST "%PROGRAMROOT%\Xoreax\IncrediBuild\BuildConsole.exe" SET OPTIONS=/build "%CONFIG%|Win32"
-
-IF %COMPILER% == VS2010 SET BUILDDIR="VisualStudio 2010"
-
-
-echo Building all solutions under %COMPILER% with the %CONFIG% configuration
-
-echo Initializing %COMPILER% environment variables...
-call %ENVVAR%
-
-echo Initializing the DirectX SDK environment variables...
-
-IF "%DXSDK_DIR%" == "" goto error_no_DXSDK_DIR
-call "%DXSDK_DIR%Utilities\Bin\dx_setenv.cmd" x86
-
-echo Moving to our build directory
-cd %BUILDDIR%
-
-echo - Building
-for %%a in (*.sln) do %BUILDCMD% "%%a" %OPTIONS% & IF ERRORLEVEL 1 goto error_compile
-
-REM It is just polite for a batch file to leave you in the same dir you started in
-cd ..
-
-REM We were successful in everything so go to the end
-goto :end
-
-:error_no_DXSDK_DIR
-@echo ERROR: DXSDK_DIR variable is not set. Make sure the DirectX SDK is installed properly.
-@goto end_error
-
-:error_compile
-@echo ERROR: There was an error compiling a solution in %CD%
-@goto end_error
-
-:end_error
-ENDLOCAL
-EXIT /B 1
-
-:end
-ENDLOCAL
diff --git a/Templates/Full/buildFiles/config/project.conf b/Templates/Full/buildFiles/config/project.conf
deleted file mode 100644
index aaed8eacfb..0000000000
--- a/Templates/Full/buildFiles/config/project.conf
+++ /dev/null
@@ -1,22 +0,0 @@
-
diff --git a/Templates/Full/buildFiles/config/project.linux.conf b/Templates/Full/buildFiles/config/project.linux.conf
deleted file mode 100644
index 6e3542c639..0000000000
--- a/Templates/Full/buildFiles/config/project.linux.conf
+++ /dev/null
@@ -1,67 +0,0 @@
-
diff --git a/Templates/Full/buildFiles/config/project.linux_ded.conf b/Templates/Full/buildFiles/config/project.linux_ded.conf
deleted file mode 100644
index f0e4fd3f1e..0000000000
--- a/Templates/Full/buildFiles/config/project.linux_ded.conf
+++ /dev/null
@@ -1,65 +0,0 @@
-
diff --git a/Templates/Full/buildFiles/config/project.mac.conf b/Templates/Full/buildFiles/config/project.mac.conf
deleted file mode 100644
index 3be3067aa4..0000000000
--- a/Templates/Full/buildFiles/config/project.mac.conf
+++ /dev/null
@@ -1,11 +0,0 @@
-
diff --git a/Templates/Full/buildFiles/config/projectCode.conf b/Templates/Full/buildFiles/config/projectCode.conf
deleted file mode 100644
index 57348ea8e2..0000000000
--- a/Templates/Full/buildFiles/config/projectCode.conf
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/Templates/Full/buildFiles/config/torque3D_dedicated.conf b/Templates/Full/buildFiles/config/torque3D_dedicated.conf
deleted file mode 100644
index 65db62b786..0000000000
--- a/Templates/Full/buildFiles/config/torque3D_dedicated.conf
+++ /dev/null
@@ -1,96 +0,0 @@
-
diff --git a/Templates/Full/buildFiles/config/webDeploy.conf b/Templates/Full/buildFiles/config/webDeploy.conf
deleted file mode 100644
index 47c43d63c1..0000000000
--- a/Templates/Full/buildFiles/config/webDeploy.conf
+++ /dev/null
@@ -1,41 +0,0 @@
-
diff --git a/Templates/Full/buildFiles/config/webDeploy.mac.conf b/Templates/Full/buildFiles/config/webDeploy.mac.conf
deleted file mode 100644
index 5276d30913..0000000000
--- a/Templates/Full/buildFiles/config/webDeploy.mac.conf
+++ /dev/null
@@ -1,20 +0,0 @@
-
diff --git a/Templates/Full/cleanShaders.bat b/Templates/Full/cleanShaders.bat
deleted file mode 100644
index 047b30d216..0000000000
--- a/Templates/Full/cleanShaders.bat
+++ /dev/null
@@ -1,7 +0,0 @@
-REM Delete procedural shaders
-
-del /q /a:-R game\shaders\procedural\*.*
-
-REM Delete dumped shader disassembly files
-
-del /q /s /a:-R *_dis.txt
\ No newline at end of file
diff --git a/Templates/Full/cleanShaders.command b/Templates/Full/cleanShaders.command
deleted file mode 100755
index 93cebdceac..0000000000
--- a/Templates/Full/cleanShaders.command
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-cd "`dirname "$0"`"
-rm -rf game/shaders/procedural/*.*
diff --git a/Templates/Full/game/Full.torsion b/Templates/Full/game/Full.torsion
deleted file mode 100644
index d08107f888..0000000000
--- a/Templates/Full/game/Full.torsion
+++ /dev/null
@@ -1,39 +0,0 @@
-
-Full
-
-main.cs
-dbgSetParameters( #port#, "#password#", true );
-
-core
-scripts
-art
-levels
-shaders
-tools
-
-cs; gui
-
-
-Release
-Full.exe
-
-true
-true
-true
-false
-
-
-Debug
-Full_DEBUG.exe
-
-true
-true
-true
-false
-
-
-
-Full
-HEAD
-true
-
diff --git a/Templates/Full/game/Full.torsion.opt b/Templates/Full/game/Full.torsion.opt
deleted file mode 100644
index f41687c476..0000000000
--- a/Templates/Full/game/Full.torsion.opt
+++ /dev/null
@@ -1,20 +0,0 @@
-
-127.0.0.1
-password
-6060
-Debug
-
-
-
-art\main.cs
-core\main.cs
-..\..\Empty\game\core\main.cs
-..\..\BaseGame\game\core\main.cs
-core\scripts\client\postFx\MLAA.cs
-core\scripts\client\postFx\ssao.cs
-core\scripts\client\postFx\hdr.cs
-core\scripts\client\postFx\dof.cs
-core\scripts\client\postFx\caustics.cs
-..\..\..\..\..\RnDBuildTest\My Projects\RnDTest\game\modules\TheFactory\components\FakeGISpotlight.cs
-
-
diff --git a/Templates/Full/generateProjects.bat b/Templates/Full/generateProjects.bat
deleted file mode 100644
index 9e43263dd5..0000000000
--- a/Templates/Full/generateProjects.bat
+++ /dev/null
@@ -1,19 +0,0 @@
-@echo off
-setlocal
-
-SET TORQUEDIR=%2
-IF NOT DEFINED TORQUEDIR SET TORQUEDIR=..\..
-
-%TORQUEDIR%\engine\bin\php\php %TORQUEDIR%\Tools\projectGenerator\projectGenerator.php buildFiles/config/project.conf %TORQUEDIR%
-
-endlocal
-
-if X%1 == X (
-
- echo.
- echo REMEMBER: Restart VisualStudio if you are running it to be sure the new
- echo project files are loaded! See docs for more info!
- echo.
-
- pause
-)
diff --git a/Templates/Full/generateProjects.command b/Templates/Full/generateProjects.command
deleted file mode 100755
index 2b980b6e00..0000000000
--- a/Templates/Full/generateProjects.command
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-cd "`dirname "$0"`"
-
-OS=`uname`
-
-if [ "$OS" = "Darwin" ]; then
- /usr/bin/php ../../Tools/projectGenerator/projectGenerator.php buildFiles/config/project.mac.conf
-else
- /usr/bin/php ../../Tools/projectGenerator/projectGenerator.php buildFiles/config/project.linux.conf
- /usr/bin/php ../../Tools/projectGenerator/projectGenerator.php buildFiles/config/project.linux_ded.conf
-fi
diff --git a/Templates/Full/thumb.png b/Templates/Full/thumb.png
deleted file mode 100644
index abb73e9fc8..0000000000
Binary files a/Templates/Full/thumb.png and /dev/null differ