diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-07-06 01:25:10 +0100 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-07-06 01:25:10 +0100 |
commit | f55667397e75991348fa25b6ad581a36de99acf0 (patch) | |
tree | 131f55e90c21d7c742b6e942a7f4ceba4289f038 /scripts/testing | |
parent | 2af5332e46b3917d6dce211e576a92d04c3eda8b (diff) |
SL-722 - handle per-object animation requests, combine for control avatar animation state.
Diffstat (limited to 'scripts/testing')
-rw-r--r-- | scripts/testing/lsl/cycle_object_animations.lsl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/testing/lsl/cycle_object_animations.lsl b/scripts/testing/lsl/cycle_object_animations.lsl index 95fa99a191..79c8ff4151 100644 --- a/scripts/testing/lsl/cycle_object_animations.lsl +++ b/scripts/testing/lsl/cycle_object_animations.lsl @@ -9,17 +9,17 @@ cycle_animations() ItemName = llGetInventoryName(INVENTORY_ANIMATION, count); if (NowPlaying != "") { - llSay(0, "Stopping " + NowPlaying); + //llSay(0, "Stopping " + NowPlaying); llStopObjectAnimation(NowPlaying); } - llSay(0, "Starting " + ItemName); + //llSay(0, "Starting " + ItemName); llStartObjectAnimation(ItemName); NowPlaying = ItemName; llSleep(10); } if (NowPlaying != "") { - llSay(0, "Stopping " + NowPlaying); + //llSay(0, "Stopping " + NowPlaying); llStopObjectAnimation(NowPlaying); llSleep(10); } |