From f55667397e75991348fa25b6ad581a36de99acf0 Mon Sep 17 00:00:00 2001 From: "Brad Payne (Vir Linden)" Date: Thu, 6 Jul 2017 01:25:10 +0100 Subject: SL-722 - handle per-object animation requests, combine for control avatar animation state. --- scripts/testing/lsl/cycle_object_animations.lsl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts/testing') 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); } -- cgit v1.2.3