aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes
diff options
context:
space:
mode:
authorMelanie Thielker2008-08-15 21:18:08 +0000
committerMelanie Thielker2008-08-15 21:18:08 +0000
commitc1fa7592c751005cde427fc0f4bf7b683d0eefe5 (patch)
treed4a9cbc892f5646d0afc2ce8aefccfe007e3cd4f /OpenSim/Region/Environment/Scenes
parentPlumb the user flags all the way through to the profile. userFlags in (diff)
downloadopensim-SC_OLD-c1fa7592c751005cde427fc0f4bf7b683d0eefe5.zip
opensim-SC_OLD-c1fa7592c751005cde427fc0f4bf7b683d0eefe5.tar.gz
opensim-SC_OLD-c1fa7592c751005cde427fc0f4bf7b683d0eefe5.tar.bz2
opensim-SC_OLD-c1fa7592c751005cde427fc0f4bf7b683d0eefe5.tar.xz
Pantis #1957
Thank you, Leaf, for a patch that implements llGetAnimationList() XEngine implementation added by myself.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes')
-rw-r--r--OpenSim/Region/Environment/Scenes/ScenePresence.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs
index b4cf70a..b22643f 100644
--- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs
@@ -39,6 +39,7 @@ using OpenSim.Framework.Communications.Cache;
39using OpenSim.Region.Environment.Types; 39using OpenSim.Region.Environment.Types;
40using OpenSim.Region.Physics.Manager; 40using OpenSim.Region.Physics.Manager;
41 41
42
42namespace OpenSim.Region.Environment.Scenes 43namespace OpenSim.Region.Environment.Scenes
43{ 44{
44 enum ScriptControlled : int 45 enum ScriptControlled : int
@@ -1346,6 +1347,14 @@ namespace OpenSim.Region.Environment.Scenes
1346 1347
1347 RemoveAnimation(animID); 1348 RemoveAnimation(animID);
1348 } 1349 }
1350
1351 public LLUUID[] GetAnimationArray()
1352 {
1353 LLUUID[] animIDs;
1354 int[] sequenceNums;
1355 m_animations.GetArrays( out animIDs, out sequenceNums );
1356 return animIDs;
1357 }
1349 1358
1350 public void HandleStartAnim(IClientAPI remoteClient, LLUUID animID) 1359 public void HandleStartAnim(IClientAPI remoteClient, LLUUID animID)
1351 { 1360 {