* One more fix to the selected feature
* Don't act immediately on a physical prim unless it's moving. * This helps when you're trying to make a box stack and you select the bottom most box.0.6.0-stable
parent
27508c1ad8
commit
db264013d4
|
@ -210,7 +210,7 @@ namespace OpenSim.Region.Physics.OdePlugin
|
||||||
// without this, if an avatar selects prim, they can walk right
|
// without this, if an avatar selects prim, they can walk right
|
||||||
// through it while it's selected
|
// through it while it's selected
|
||||||
|
|
||||||
if (m_isphysical || !value)
|
if ((m_isphysical && !_zeroFlag) || !value)
|
||||||
{
|
{
|
||||||
m_taintselected = value;
|
m_taintselected = value;
|
||||||
_parent_scene.AddPhysicsActorTaint(this);
|
_parent_scene.AddPhysicsActorTaint(this);
|
||||||
|
|
Loading…
Reference in New Issue