mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
very useless changes
This commit is contained in:
@@ -148,7 +148,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
public bool IsRoot
|
||||
{
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
get { return Object.ReferenceEquals(ParentGroup.RootPart, this); }
|
||||
get { return object.ReferenceEquals(ParentGroup.RootPart, this); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -733,7 +733,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
set { m_scriptAccessPin = (int)value; }
|
||||
}
|
||||
|
||||
public Byte[] TextureAnimation
|
||||
public byte[] TextureAnimation
|
||||
{
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
get { return m_TextureAnimation; }
|
||||
@@ -815,6 +815,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
set
|
||||
{
|
||||
m_groupPosition = value;
|
||||
|
||||
PhysicsActor actor = PhysActor;
|
||||
if (actor != null && ParentGroup.Scene.PhysicsScene != null)
|
||||
{
|
||||
@@ -2535,7 +2536,6 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
return pa is null ? AbsolutePosition : pa.CenterOfMass;
|
||||
}
|
||||
|
||||
|
||||
public Vector3 GetForce()
|
||||
{
|
||||
return Force;
|
||||
@@ -4489,6 +4489,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
ParentGroup.Scene.EventManager.TriggerOnScriptChangedEvent(LocalId, (uint)val, data);
|
||||
}
|
||||
|
||||
|
||||
public void TrimPermissions()
|
||||
{
|
||||
BaseMask &= (uint)(PermissionMask.All | PermissionMask.Export);
|
||||
@@ -5706,7 +5707,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
}
|
||||
}
|
||||
|
||||
public Byte[] SerializeAnimations()
|
||||
public byte[] SerializeAnimations()
|
||||
{
|
||||
if (AnimationsNames == null)
|
||||
return null;
|
||||
@@ -5740,7 +5741,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
}
|
||||
}
|
||||
|
||||
public void DeSerializeAnimations(Byte[] data)
|
||||
public void DeSerializeAnimations(byte[] data)
|
||||
{
|
||||
if(data == null)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user