C# Class OpenSim.Region.Framework.Scenes.SceneGraph

This class used to be called InnerScene and may not yet truly be a SceneGraph. The non scene graph components should be migrated out over time.
Afficher le fichier Open project: N3X15/VoxelSim Class Usage Examples

Protected Properties

Свойство Type Description
Entities OpenSim.Framework.EntityManager
RestorePresences ScenePresence>.Dictionary
SceneObjectGroupsByFullID SceneObjectGroup>.Dictionary
SceneObjectGroupsByLocalID SceneObjectGroup>.Dictionary
_PhyScene PhysicsScene
m_activeScripts int
m_numChildAgents int
m_numPrim int
m_numRootAgents int
m_parentScene Scene
m_physicalPrim int
m_presenceLock object
m_regInfo RegionInfo
m_scenePresenceArray List
m_scenePresenceMap ScenePresence>.Dictionary
m_scriptLPS int
m_syncRoot object
m_updateList SceneObjectGroup>.Dictionary

Méthodes publiques

Méthode Description
AddNewSceneObject ( SceneObjectGroup sceneObject, bool attachToBackup, System.Vector3 pos, Quaternion rot, System.Vector3 vel ) : bool

Add a newly created object to the scene.

DeleteSceneObject ( UUID uuid, bool resultOfObjectLinked ) : bool

Delete an object from the scene

DropObject ( uint objectLocalID, IClientAPI remoteClient ) : void
DuplicateObject ( uint originalPrimID, System.Vector3 offset, uint flags, UUID AgentID, UUID GroupID, Quaternion rot ) : SceneObjectGroup

Duplicate the given object.

ForEachScenePresence ( Action action ) : void

Performs action on all scene presences. This can ultimately run the actions in parallel but any delegates passed in will need to implement their own locking on data they reference and modify outside of the scope of the delegate.

GetActiveObjectsCount ( ) : int
GetActiveScriptsCount ( ) : int
GetChildAgentCount ( ) : int
GetCoarseLocations ( List &coarseLocations, List &avatarUUIDs, uint maxLocations ) : void
GetControllingClient ( UUID agentId ) : IClientAPI

Get the controlling client for the given avatar, if there is one. FIXME: The only user of the method right now is Caps.cs, in order to resolve a client API since it can't use the ScenePresence. This could be better solved in a number of ways - we could establish an OpenSim.Framework.IScenePresence, or move the caps code into a region package (which might be the more suitable solution).

this used to be protected internal, but that prevents CapabilitiesModule from accessing it

GetGroupByPrim ( uint localID ) : SceneObjectGroup

Get a scene object group that contains the prim with the given local id

GetRootAgentCount ( ) : int
GetScriptLPS ( ) : int
GetTopScripts ( ) : float>.Dictionary
GetTotalObjectsCount ( ) : int
RecalculateStats ( ) : void
UpdatePrimPosition ( uint localID, Vector3 pos, IClientAPI remoteClient ) : void

Update the position of the given part

removeUserCount ( bool TypeRCTF ) : void

Méthodes protégées

Méthode Description
AddActiveScripts ( int number ) : void
AddNewSceneObject ( SceneObjectGroup sceneObject, bool attachToBackup, bool sendClientUpdates ) : bool

Add a newly created object to the scene. This will both update the scene, and send information about the new object to all clients interested in the scene.

AddPhysicalPrim ( int number ) : void
AddRestoredSceneObject ( SceneObjectGroup sceneObject, bool attachToBackup, bool alreadyPersisted, bool sendClientUpdates ) : bool

Add an object into the scene that has come from storage

AddSceneObject ( SceneObjectGroup sceneObject, bool attachToBackup, bool sendClientUpdates ) : bool

Add an object to the scene. This will both update the scene, and send information about the new object to all clients interested in the scene.

AddScenePresence ( ScenePresence presence ) : void

Add a presence to the scene

AddToScriptLPS ( int number ) : void
AddToUpdateList ( SceneObjectGroup obj ) : void

Add an object to the list of prims to process on the next update

Close ( ) : void
ConvertLocalIDToFullID ( uint localID ) : UUID
CreateAndAddChildScenePresence ( IClientAPI client, AvatarAppearance appearance ) : ScenePresence
DelinkObjects ( List prims ) : void

Delink a linkset

DuplicateObject ( uint originalPrim, System.Vector3 offset, uint flags, UUID AgentID, UUID GroupID ) : void

Duplicate the given object, Fire and Forget, No rotation, no return wrapper

ForEachSOG ( Action action ) : void

Performs action on all scene object groups.

GetClosestIntersectingPrim ( Ray hray, bool frontFacesOnly, bool faceCenters ) : EntityIntersection
GetEntities ( ) : EntityBase[]

Returns a list of the entities in the scene. This is a new list so no locking is required to iterate over it

GetSceneObjectPart ( UUID fullID ) : SceneObjectPart

Get a part contained in this scene.

GetSceneObjectPart ( string name ) : SceneObjectPart

Get a named prim contained in this scene (will return the first found, if there are more than one prim with the same name)

GetSceneObjectPart ( uint localID ) : SceneObjectPart

Get a part contained in this scene.

GetScenePresence ( UUID agentID ) : ScenePresence

Request a scene presence by UUID. Fast, indexed lookup.

GetScenePresence ( string firstName, string lastName ) : ScenePresence

Request the scene presence by name.

GetScenePresence ( uint localID ) : ScenePresence

Request the scene presence by localID.

HandleObjectGroupUpdate ( IClientAPI remoteClient, UUID GroupID, uint objectLocalID, UUID Garbage ) : void
HandleRedo ( IClientAPI remoteClient, UUID primId ) : void
HandleUndo ( IClientAPI remoteClient, UUID primId ) : void
LinkObjects ( SceneObjectPart root, List children ) : void

Initial method invoked when we receive a link objects request from the client.

MakeObjectSearchable ( IClientAPI remoteClient, bool IncludeInSearch, uint localID ) : void
MoveObject ( UUID objectID, System.Vector3 offset, System.Vector3 pos, IClientAPI remoteClient, List surfaceArgs ) : void

Move the given object

PrimClickAction ( IClientAPI remoteClient, uint primLocalID, string clickAction ) : void
PrimDescription ( IClientAPI remoteClient, uint primLocalID, string description ) : void

PrimMaterial ( IClientAPI remoteClient, uint primLocalID, string material ) : void
PrimName ( IClientAPI remoteClient, uint primLocalID, string name ) : void

RemovePhysicalPrim ( int number ) : void
RemoveScenePresence ( UUID agentID ) : void

Remove a presence from the scene

RequestObjectPropertiesFamily ( IClientAPI remoteClient, UUID AgentID, uint RequestFlags, UUID ObjectID ) : void

This handles the nifty little tool tip that you get when you drag your mouse over an object Send to the Object Group to process. We don't know enough to service the request

SceneGraph ( Scene parent, RegionInfo regInfo ) : System
SpinObject ( UUID objectID, Quaternion rotation, IClientAPI remoteClient ) : void

Spin the given object

SpinStart ( UUID objectID, IClientAPI remoteClient ) : void

Start spinning the given object

SwapRootChildAgent ( bool direction_RC_CR_T_F ) : void
TryGetAvatarByName ( string name, ScenePresence &avatar ) : bool
TryGetScenePresence ( UUID agentID, ScenePresence &avatar ) : bool
UpdateExtraParam ( UUID agentID, uint primLocalID, ushort type, bool inUse, byte data ) : void
UpdateObjectGroups ( ) : void

Process all pending updates

UpdatePhysics ( double elapsed ) : float
UpdatePreparePhysics ( ) : void
UpdatePresences ( ) : void
UpdatePrimFlags ( uint localID, bool UsePhysics, bool IsTemporary, bool IsPhantom, IClientAPI remoteClient ) : void

UpdatePrimGroupScale ( uint localID, Vector3 scale, IClientAPI remoteClient ) : void
UpdatePrimRotation ( uint localID, Quaternion rot, IClientAPI remoteClient ) : void

UpdatePrimRotation ( uint localID, Vector3 pos, Quaternion rot, IClientAPI remoteClient ) : void

UpdatePrimScale ( uint localID, Vector3 scale, IClientAPI remoteClient ) : void

UpdatePrimShape ( UUID agentID, uint primLocalID, UpdateShapeArgs shapeBlock ) : void

UpdatePrimSinglePosition ( uint localID, Vector3 pos, IClientAPI remoteClient ) : void

Update the position of the given part

UpdatePrimSingleRotation ( uint localID, Quaternion rot, IClientAPI remoteClient ) : void

UpdatePrimSingleRotationPosition ( uint localID, Quaternion rot, Vector3 pos, IClientAPI remoteClient ) : void

UpdatePrimTexture ( uint localID, byte texture, IClientAPI remoteClient ) : void

Update the texture entry of the given prim.

UpdateScenePresenceMovement ( ) : void
Vector3Distance ( Vector3 v1, Vector3 v2 ) : float

Calculates the distance between two Vector3s

physicsBasedCrash ( ) : void

Private Methods

Méthode Description
GetGroupByPrim ( UUID fullID ) : SceneObjectGroup

Get a scene object group that contains the prim with the given uuid

GetScenePresences ( ) : List

Get a reference to the scene presence list. Changes to the list will be done in a copy There is no guarantee that presences will remain in the scene after the list is returned. This list should remain private to SceneGraph. Callers wishing to iterate should instead pass a delegate to ForEachScenePresence.

Method Details

AddActiveScripts() protected méthode

protected AddActiveScripts ( int number ) : void
number int
Résultat void

AddNewSceneObject() public méthode

Add a newly created object to the scene.
public AddNewSceneObject ( SceneObjectGroup sceneObject, bool attachToBackup, System.Vector3 pos, Quaternion rot, System.Vector3 vel ) : bool
sceneObject SceneObjectGroup
attachToBackup bool
pos System.Vector3 Position of the object
rot Quaternion Rotation of the object
vel System.Vector3 Velocity of the object. This parameter only has an effect if the object is physical
Résultat bool

AddNewSceneObject() protected méthode

Add a newly created object to the scene. This will both update the scene, and send information about the new object to all clients interested in the scene.
protected AddNewSceneObject ( SceneObjectGroup sceneObject, bool attachToBackup, bool sendClientUpdates ) : bool
sceneObject SceneObjectGroup
attachToBackup bool /// If true, the object is made persistent into the scene. /// If false, the object will not persist over server restarts ///
sendClientUpdates bool
Résultat bool

AddPhysicalPrim() protected méthode

protected AddPhysicalPrim ( int number ) : void
number int
Résultat void

AddRestoredSceneObject() protected méthode

Add an object into the scene that has come from storage
protected AddRestoredSceneObject ( SceneObjectGroup sceneObject, bool attachToBackup, bool alreadyPersisted, bool sendClientUpdates ) : bool
sceneObject SceneObjectGroup
attachToBackup bool /// If true, changes to the object will be reflected in its persisted data /// If false, the persisted data will not be changed even if the object in the scene is changed ///
alreadyPersisted bool /// If true, we won't persist this object until it changes /// If false, we'll persist this object immediately ///
sendClientUpdates bool /// If true, we send updates to the client to tell it about this object /// If false, we leave it up to the caller to do this ///
Résultat bool

AddSceneObject() protected méthode

Add an object to the scene. This will both update the scene, and send information about the new object to all clients interested in the scene.
protected AddSceneObject ( SceneObjectGroup sceneObject, bool attachToBackup, bool sendClientUpdates ) : bool
sceneObject SceneObjectGroup
attachToBackup bool /// If true, the object is made persistent into the scene. /// If false, the object will not persist over server restarts ///
sendClientUpdates bool /// If true, updates for the new scene object are sent to all viewers in range. /// If false, it is left to the caller to schedule the update ///
Résultat bool

AddScenePresence() protected méthode

Add a presence to the scene
protected AddScenePresence ( ScenePresence presence ) : void
presence ScenePresence
Résultat void

AddToScriptLPS() protected méthode

protected AddToScriptLPS ( int number ) : void
number int
Résultat void

AddToUpdateList() protected méthode

Add an object to the list of prims to process on the next update
protected AddToUpdateList ( SceneObjectGroup obj ) : void
obj SceneObjectGroup /// A ///
Résultat void

Close() protected méthode

protected Close ( ) : void
Résultat void

ConvertLocalIDToFullID() protected méthode

protected ConvertLocalIDToFullID ( uint localID ) : UUID
localID uint
Résultat UUID

CreateAndAddChildScenePresence() protected méthode

protected CreateAndAddChildScenePresence ( IClientAPI client, AvatarAppearance appearance ) : ScenePresence
client IClientAPI
appearance OpenSim.Framework.AvatarAppearance
Résultat ScenePresence

DeleteSceneObject() public méthode

Delete an object from the scene
public DeleteSceneObject ( UUID uuid, bool resultOfObjectLinked ) : bool
uuid UUID
resultOfObjectLinked bool
Résultat bool

DelinkObjects() protected méthode

Delink a linkset
protected DelinkObjects ( List prims ) : void
prims List
Résultat void

DropObject() public méthode

public DropObject ( uint objectLocalID, IClientAPI remoteClient ) : void
objectLocalID uint
remoteClient IClientAPI
Résultat void

DuplicateObject() public méthode

Duplicate the given object.
public DuplicateObject ( uint originalPrimID, System.Vector3 offset, uint flags, UUID AgentID, UUID GroupID, Quaternion rot ) : SceneObjectGroup
originalPrimID uint
offset System.Vector3
flags uint
AgentID UUID
GroupID UUID
rot Quaternion
Résultat SceneObjectGroup

DuplicateObject() protected méthode

Duplicate the given object, Fire and Forget, No rotation, no return wrapper
protected DuplicateObject ( uint originalPrim, System.Vector3 offset, uint flags, UUID AgentID, UUID GroupID ) : void
originalPrim uint
offset System.Vector3
flags uint
AgentID UUID
GroupID UUID
Résultat void

ForEachSOG() protected méthode

Performs action on all scene object groups.
protected ForEachSOG ( Action action ) : void
action Action
Résultat void

ForEachScenePresence() public méthode

Performs action on all scene presences. This can ultimately run the actions in parallel but any delegates passed in will need to implement their own locking on data they reference and modify outside of the scope of the delegate.
public ForEachScenePresence ( Action action ) : void
action Action
Résultat void

GetActiveObjectsCount() public méthode

public GetActiveObjectsCount ( ) : int
Résultat int

GetActiveScriptsCount() public méthode

public GetActiveScriptsCount ( ) : int
Résultat int

GetChildAgentCount() public méthode

public GetChildAgentCount ( ) : int
Résultat int

GetClosestIntersectingPrim() protected méthode

protected GetClosestIntersectingPrim ( Ray hray, bool frontFacesOnly, bool faceCenters ) : EntityIntersection
hray OpenMetaverse.Ray
frontFacesOnly bool
faceCenters bool
Résultat EntityIntersection

GetCoarseLocations() public méthode

public GetCoarseLocations ( List &coarseLocations, List &avatarUUIDs, uint maxLocations ) : void
coarseLocations List
avatarUUIDs List
maxLocations uint
Résultat void

GetControllingClient() public méthode

Get the controlling client for the given avatar, if there is one. FIXME: The only user of the method right now is Caps.cs, in order to resolve a client API since it can't use the ScenePresence. This could be better solved in a number of ways - we could establish an OpenSim.Framework.IScenePresence, or move the caps code into a region package (which might be the more suitable solution).
this used to be protected internal, but that prevents CapabilitiesModule from accessing it
public GetControllingClient ( UUID agentId ) : IClientAPI
agentId UUID
Résultat IClientAPI

GetEntities() protected méthode

Returns a list of the entities in the scene. This is a new list so no locking is required to iterate over it
protected GetEntities ( ) : EntityBase[]
Résultat EntityBase[]

GetGroupByPrim() public méthode

Get a scene object group that contains the prim with the given local id
public GetGroupByPrim ( uint localID ) : SceneObjectGroup
localID uint
Résultat SceneObjectGroup

GetRootAgentCount() public méthode

public GetRootAgentCount ( ) : int
Résultat int

GetSceneObjectPart() protected méthode

Get a part contained in this scene.
protected GetSceneObjectPart ( UUID fullID ) : SceneObjectPart
fullID UUID
Résultat SceneObjectPart

GetSceneObjectPart() protected méthode

Get a named prim contained in this scene (will return the first found, if there are more than one prim with the same name)
protected GetSceneObjectPart ( string name ) : SceneObjectPart
name string
Résultat SceneObjectPart

GetSceneObjectPart() protected méthode

Get a part contained in this scene.
protected GetSceneObjectPart ( uint localID ) : SceneObjectPart
localID uint
Résultat SceneObjectPart

GetScenePresence() protected méthode

Request a scene presence by UUID. Fast, indexed lookup.
protected GetScenePresence ( UUID agentID ) : ScenePresence
agentID UUID
Résultat ScenePresence

GetScenePresence() protected méthode

Request the scene presence by name.
protected GetScenePresence ( string firstName, string lastName ) : ScenePresence
firstName string
lastName string
Résultat ScenePresence

GetScenePresence() protected méthode

Request the scene presence by localID.
protected GetScenePresence ( uint localID ) : ScenePresence
localID uint
Résultat ScenePresence

GetScriptLPS() public méthode

public GetScriptLPS ( ) : int
Résultat int

GetTopScripts() public méthode

public GetTopScripts ( ) : float>.Dictionary
Résultat float>.Dictionary

GetTotalObjectsCount() public méthode

public GetTotalObjectsCount ( ) : int
Résultat int

HandleObjectGroupUpdate() protected méthode

protected HandleObjectGroupUpdate ( IClientAPI remoteClient, UUID GroupID, uint objectLocalID, UUID Garbage ) : void
remoteClient IClientAPI
GroupID UUID
objectLocalID uint
Garbage UUID
Résultat void

HandleRedo() protected méthode

protected HandleRedo ( IClientAPI remoteClient, UUID primId ) : void
remoteClient IClientAPI
primId UUID
Résultat void

HandleUndo() protected méthode

protected HandleUndo ( IClientAPI remoteClient, UUID primId ) : void
remoteClient IClientAPI
primId UUID
Résultat void

LinkObjects() protected méthode

Initial method invoked when we receive a link objects request from the client.
protected LinkObjects ( SceneObjectPart root, List children ) : void
root SceneObjectPart
children List
Résultat void

MakeObjectSearchable() protected méthode

protected MakeObjectSearchable ( IClientAPI remoteClient, bool IncludeInSearch, uint localID ) : void
remoteClient IClientAPI
IncludeInSearch bool
localID uint
Résultat void

MoveObject() protected méthode

Move the given object
protected MoveObject ( UUID objectID, System.Vector3 offset, System.Vector3 pos, IClientAPI remoteClient, List surfaceArgs ) : void
objectID UUID
offset System.Vector3
pos System.Vector3
remoteClient IClientAPI
surfaceArgs List
Résultat void

PrimClickAction() protected méthode

protected PrimClickAction ( IClientAPI remoteClient, uint primLocalID, string clickAction ) : void
remoteClient IClientAPI
primLocalID uint
clickAction string
Résultat void

PrimDescription() protected méthode

protected PrimDescription ( IClientAPI remoteClient, uint primLocalID, string description ) : void
remoteClient IClientAPI
primLocalID uint
description string
Résultat void

PrimMaterial() protected méthode

protected PrimMaterial ( IClientAPI remoteClient, uint primLocalID, string material ) : void
remoteClient IClientAPI
primLocalID uint
material string
Résultat void

PrimName() protected méthode

protected PrimName ( IClientAPI remoteClient, uint primLocalID, string name ) : void
remoteClient IClientAPI
primLocalID uint
name string
Résultat void

RecalculateStats() public méthode

public RecalculateStats ( ) : void
Résultat void

RemovePhysicalPrim() protected méthode

protected RemovePhysicalPrim ( int number ) : void
number int
Résultat void

RemoveScenePresence() protected méthode

Remove a presence from the scene
protected RemoveScenePresence ( UUID agentID ) : void
agentID UUID
Résultat void

RequestObjectPropertiesFamily() protected méthode

This handles the nifty little tool tip that you get when you drag your mouse over an object Send to the Object Group to process. We don't know enough to service the request
protected RequestObjectPropertiesFamily ( IClientAPI remoteClient, UUID AgentID, uint RequestFlags, UUID ObjectID ) : void
remoteClient IClientAPI
AgentID UUID
RequestFlags uint
ObjectID UUID
Résultat void

SceneGraph() protected méthode

protected SceneGraph ( Scene parent, RegionInfo regInfo ) : System
parent Scene
regInfo RegionInfo
Résultat System

SpinObject() protected méthode

Spin the given object
protected SpinObject ( UUID objectID, Quaternion rotation, IClientAPI remoteClient ) : void
objectID UUID
rotation Quaternion
remoteClient IClientAPI
Résultat void

SpinStart() protected méthode

Start spinning the given object
protected SpinStart ( UUID objectID, IClientAPI remoteClient ) : void
objectID UUID
remoteClient IClientAPI
Résultat void

SwapRootChildAgent() protected méthode

protected SwapRootChildAgent ( bool direction_RC_CR_T_F ) : void
direction_RC_CR_T_F bool
Résultat void

TryGetAvatarByName() protected méthode

protected TryGetAvatarByName ( string name, ScenePresence &avatar ) : bool
name string
avatar ScenePresence
Résultat bool

TryGetScenePresence() protected méthode

protected TryGetScenePresence ( UUID agentID, ScenePresence &avatar ) : bool
agentID UUID
avatar ScenePresence
Résultat bool

UpdateExtraParam() protected méthode

protected UpdateExtraParam ( UUID agentID, uint primLocalID, ushort type, bool inUse, byte data ) : void
agentID UUID
primLocalID uint
type ushort
inUse bool
data byte
Résultat void

UpdateObjectGroups() protected méthode

Process all pending updates
protected UpdateObjectGroups ( ) : void
Résultat void

UpdatePhysics() protected méthode

protected UpdatePhysics ( double elapsed ) : float
elapsed double
Résultat float

UpdatePreparePhysics() protected méthode

protected UpdatePreparePhysics ( ) : void
Résultat void

UpdatePresences() protected méthode

protected UpdatePresences ( ) : void
Résultat void

UpdatePrimFlags() protected méthode

protected UpdatePrimFlags ( uint localID, bool UsePhysics, bool IsTemporary, bool IsPhantom, IClientAPI remoteClient ) : void
localID uint
UsePhysics bool
IsTemporary bool
IsPhantom bool
remoteClient IClientAPI
Résultat void

UpdatePrimGroupScale() protected méthode

protected UpdatePrimGroupScale ( uint localID, Vector3 scale, IClientAPI remoteClient ) : void
localID uint
scale Vector3
remoteClient IClientAPI
Résultat void

UpdatePrimPosition() public méthode

Update the position of the given part
public UpdatePrimPosition ( uint localID, Vector3 pos, IClientAPI remoteClient ) : void
localID uint
pos Vector3
remoteClient IClientAPI
Résultat void

UpdatePrimRotation() protected méthode

protected UpdatePrimRotation ( uint localID, Quaternion rot, IClientAPI remoteClient ) : void
localID uint
rot Quaternion
remoteClient IClientAPI
Résultat void

UpdatePrimRotation() protected méthode

protected UpdatePrimRotation ( uint localID, Vector3 pos, Quaternion rot, IClientAPI remoteClient ) : void
localID uint
pos Vector3
rot Quaternion
remoteClient IClientAPI
Résultat void

UpdatePrimScale() protected méthode

protected UpdatePrimScale ( uint localID, Vector3 scale, IClientAPI remoteClient ) : void
localID uint
scale Vector3
remoteClient IClientAPI
Résultat void

UpdatePrimShape() protected méthode

protected UpdatePrimShape ( UUID agentID, uint primLocalID, UpdateShapeArgs shapeBlock ) : void
agentID UUID
primLocalID uint
shapeBlock UpdateShapeArgs
Résultat void

UpdatePrimSinglePosition() protected méthode

Update the position of the given part
protected UpdatePrimSinglePosition ( uint localID, Vector3 pos, IClientAPI remoteClient ) : void
localID uint
pos Vector3
remoteClient IClientAPI
Résultat void

UpdatePrimSingleRotation() protected méthode

protected UpdatePrimSingleRotation ( uint localID, Quaternion rot, IClientAPI remoteClient ) : void
localID uint
rot Quaternion
remoteClient IClientAPI
Résultat void

UpdatePrimSingleRotationPosition() protected méthode

protected UpdatePrimSingleRotationPosition ( uint localID, Quaternion rot, Vector3 pos, IClientAPI remoteClient ) : void
localID uint
rot Quaternion
pos Vector3
remoteClient IClientAPI
Résultat void

UpdatePrimTexture() protected méthode

Update the texture entry of the given prim.
protected UpdatePrimTexture ( uint localID, byte texture, IClientAPI remoteClient ) : void
localID uint
texture byte
remoteClient IClientAPI
Résultat void

UpdateScenePresenceMovement() protected méthode

protected UpdateScenePresenceMovement ( ) : void
Résultat void

Vector3Distance() protected méthode

Calculates the distance between two Vector3s
protected Vector3Distance ( Vector3 v1, Vector3 v2 ) : float
v1 Vector3
v2 Vector3
Résultat float

physicsBasedCrash() protected méthode

protected physicsBasedCrash ( ) : void
Résultat void

removeUserCount() public méthode

public removeUserCount ( bool TypeRCTF ) : void
TypeRCTF bool
Résultat void

Property Details

Entities protected_oe property

protected EntityManager,OpenSim.Framework Entities
Résultat OpenSim.Framework.EntityManager

RestorePresences protected_oe property

protected Dictionary RestorePresences
Résultat ScenePresence>.Dictionary

SceneObjectGroupsByFullID protected_oe property

protected Dictionary SceneObjectGroupsByFullID
Résultat SceneObjectGroup>.Dictionary

SceneObjectGroupsByLocalID protected_oe property

protected Dictionary SceneObjectGroupsByLocalID
Résultat SceneObjectGroup>.Dictionary

_PhyScene protected_oe property

protected PhysicsScene _PhyScene
Résultat PhysicsScene

m_activeScripts protected_oe property

protected int m_activeScripts
Résultat int

m_numChildAgents protected_oe property

protected int m_numChildAgents
Résultat int

m_numPrim protected_oe property

protected int m_numPrim
Résultat int

m_numRootAgents protected_oe property

protected int m_numRootAgents
Résultat int

m_parentScene protected_oe property

protected Scene m_parentScene
Résultat Scene

m_physicalPrim protected_oe property

protected int m_physicalPrim
Résultat int

m_presenceLock protected_oe property

protected object m_presenceLock
Résultat object

m_regInfo protected_oe property

protected RegionInfo m_regInfo
Résultat RegionInfo

m_scenePresenceArray protected_oe property

protected List m_scenePresenceArray
Résultat List

m_scenePresenceMap protected_oe property

protected Dictionary m_scenePresenceMap
Résultat ScenePresence>.Dictionary

m_scriptLPS protected_oe property

protected int m_scriptLPS
Résultat int

m_syncRoot protected_oe property

protected object m_syncRoot
Résultat object

m_updateList protected_oe property

protected Dictionary m_updateList
Résultat SceneObjectGroup>.Dictionary