aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
diff options
context:
space:
mode:
authorUbitUmarov2012-08-29 03:19:47 +0100
committerUbitUmarov2012-08-29 03:19:47 +0100
commit2e54c3cc8f4caf6b6d056ae04419b171942a17d7 (patch)
treee3dbc9ea4813e9e148782292dba24689a870d39c /OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
parent[Potentially broken] keyframes changes.. since it's there, use timer for (diff)
downloadopensim-SC-2e54c3cc8f4caf6b6d056ae04419b171942a17d7.zip
opensim-SC-2e54c3cc8f4caf6b6d056ae04419b171942a17d7.tar.gz
opensim-SC-2e54c3cc8f4caf6b6d056ae04419b171942a17d7.tar.bz2
opensim-SC-2e54c3cc8f4caf6b6d056ae04419b171942a17d7.tar.xz
A few more changes to keyframes
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
index 65a1da2..834d27b 100644
--- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
@@ -2066,7 +2066,7 @@ namespace OpenSim.Region.Framework.Scenes
2066 { 2066 {
2067 if (part.KeyframeMotion != null) 2067 if (part.KeyframeMotion != null)
2068 { 2068 {
2069 part.KeyframeMotion = KeyframeMotion.FromData(backup_group, part.KeyframeMotion.Serialize(false)); 2069 part.KeyframeMotion = KeyframeMotion.FromData(backup_group, part.KeyframeMotion.Serialize());
2070// part.KeyframeMotion.UpdateSceneObject(this); 2070// part.KeyframeMotion.UpdateSceneObject(this);
2071 } 2071 }
2072 }); 2072 });
@@ -4419,7 +4419,7 @@ namespace OpenSim.Region.Framework.Scenes
4419 { 4419 {
4420 if (part.KeyframeMotion != null) 4420 if (part.KeyframeMotion != null)
4421 { 4421 {
4422 part.KeyframeMotion = KeyframeMotion.FromData(sog, part.KeyframeMotion.Serialize(true)); 4422 part.KeyframeMotion = KeyframeMotion.FromData(sog, part.KeyframeMotion.Serialize());
4423 // this is called later 4423 // this is called later
4424// part.KeyframeMotion.UpdateSceneObject(this); 4424// part.KeyframeMotion.UpdateSceneObject(this);
4425 } 4425 }