summaryrefslogtreecommitdiff
path: root/indra/newview/scripts/lua/test_LLGesture.lua
diff options
context:
space:
mode:
authorMnikolenko Productengine <mnikolenko@productengine.com>2024-03-27 23:11:24 +0200
committerMnikolenko Productengine <mnikolenko@productengine.com>2024-03-27 23:11:24 +0200
commitbfeedacf5a32fb77bd505c43126f3b5dc4394296 (patch)
tree2e8a847bd590a7d1a45043d1f9ffed689f85fefe /indra/newview/scripts/lua/test_LLGesture.lua
parent55c32761a0be05c7d4b4e17765e2d341efb0ebe6 (diff)
Run each script file with new LuaState
Diffstat (limited to 'indra/newview/scripts/lua/test_LLGesture.lua')
-rw-r--r--indra/newview/scripts/lua/test_LLGesture.lua46
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.')