Merge pull request #449 from Phantom139/uuidreplacement

UUID Replacement
This commit is contained in:
SilentMike 2013-10-09 12:31:47 -07:00
commit 2ac675000f
11 changed files with 14 additions and 3 deletions

View file

@ -41,6 +41,7 @@
#include "lighting/lightQuery.h"
#include "console/engineAPI.h"
using namespace Torque;
bool PhysicsShape::smNoCorrections = false;
bool PhysicsShape::smNoSmoothing = false;
@ -240,7 +241,7 @@ void PhysicsShapeData::onRemove()
void PhysicsShapeData::_onResourceChanged( const Torque::Path &path )
{
if ( path != Path( shapeName ) )
if ( path != Path( shapeName ) )
return;
// Reload the changed shape.

View file

@ -49,6 +49,8 @@
#include "materials/materialFeatureTypes.h"
#include "console/engineAPI.h"
using namespace Torque;
extern bool gEditingMission;
IMPLEMENT_CO_NETOBJECT_V1(TSStatic);