diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-03-29 11:11:39 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-03-29 11:11:39 -0400 |
commit | a75b9a629c1c37ae58fe753922b4282bacf8205f (patch) | |
tree | 228f08a1500822d89f12ffefb7a6841ff82a40aa /indra/newview/scripts/lua/test_LLGesture.lua | |
parent | b165191a1488201c35170d0c5ba4fcd8c5342bf2 (diff) | |
parent | b4d699764044301c460560f7665b623a571bf14f (diff) |
Merge branch 'release/luau-scripting' into lua-startup
Diffstat (limited to 'indra/newview/scripts/lua/test_LLGesture.lua')
-rw-r--r-- | indra/newview/scripts/lua/test_LLGesture.lua | 46 |
1 files changed, 20 insertions, 26 deletions
diff --git a/indra/newview/scripts/lua/test_LLGesture.lua b/indra/newview/scripts/lua/test_LLGesture.lua index 5897a0e3cb..1cce674565 100644 --- a/indra/newview/scripts/lua/test_LLGesture.lua +++ b/indra/newview/scripts/lua/test_LLGesture.lua @@ -2,31 +2,25 @@ LLGesture = require 'LLGesture' inspect = require 'inspect' -coro = require 'coro' -leap = require 'leap' -coro.launch(function() - -- getActiveGestures() returns {<UUID>: {name, playing, trigger}} - gestures_uuid = LLGesture.getActiveGestures() - -- convert to {<name>: <uuid>} - gestures = {} - for uuid, info in pairs(gestures_uuid) do - gestures[info.name] = uuid - end - -- now run through the list - for name, uuid in pairs(gestures) do - if name == 'afk' then - -- afk has a long timeout, and isn't interesting to look at - continue - end - print(name) - LLGesture.startGesture(uuid) - repeat - LL.sleep(1) - until not LLGesture.isGesturePlaying(uuid) - end - print('Done.') - leap.done() -end) -leap.process() +-- getActiveGestures() returns {<UUID>: {name, playing, trigger}} +gestures_uuid = LLGesture.getActiveGestures() +-- convert to {<name>: <uuid>} +gestures = {} +for uuid, info in pairs(gestures_uuid) do + gestures[info.name] = uuid +end +-- now run through the list +for name, uuid in pairs(gestures) do + if name == 'afk' then + -- afk has a long timeout, and isn't interesting to look at + continue + end + print(name) + LLGesture.startGesture(uuid) + repeat + LL.sleep(1) + until not LLGesture.isGesturePlaying(uuid) +end +print('Done.') |