Give attachments the same priority as other avatars in BestAvatarResponsiveness
policysoprefactor
parent
008e840cf2
commit
1be53b58a7
|
@ -210,7 +210,10 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
{
|
||||
PhysicsActor physActor = ((SceneObjectPart)entity).ParentGroup.RootPart.PhysActor;
|
||||
if (physActor == null || !physActor.IsPhysical)
|
||||
priority+=100;
|
||||
priority += 100;
|
||||
|
||||
if (((SceneObjectPart)entity).ParentGroup.RootPart.IsAttachment)
|
||||
priority = 1.0;
|
||||
}
|
||||
return priority;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue