mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-12 15:14:35 +00:00
Merge pull request #1377 from Azaezel/alpha41/cureEDysfunction
need to filter subscenes out of screenspace box drag
This commit is contained in:
commit
75db179ced
1 changed files with 1 additions and 1 deletions
|
|
@ -2464,7 +2464,7 @@ static void findDragMeshCallback( SceneObject *obj, void *data )
|
||||||
if ( dragData->mWorldEditor->objClassIgnored( obj ) ||
|
if ( dragData->mWorldEditor->objClassIgnored( obj ) ||
|
||||||
!obj->isSelectionEnabled() ||
|
!obj->isSelectionEnabled() ||
|
||||||
obj->getTypeMask() & ( TerrainObjectType | ProjectileObjectType ) ||
|
obj->getTypeMask() & ( TerrainObjectType | ProjectileObjectType ) ||
|
||||||
dynamic_cast< GroundPlane* >( obj ) ||
|
dynamic_cast< GroundPlane* >( obj ) || dynamic_cast<SubScene*>(obj) ||
|
||||||
Prefab::getPrefabByChild( obj ) )
|
Prefab::getPrefabByChild( obj ) )
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue