diff options
Diffstat (limited to 'indra/newview/scripts/lua/require')
-rw-r--r-- | indra/newview/scripts/lua/require/LLAgent.lua | 6 | ||||
-rw-r--r-- | indra/newview/scripts/lua/require/UI.lua | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/scripts/lua/require/LLAgent.lua b/indra/newview/scripts/lua/require/LLAgent.lua index b2be69dcdf..6068a916ed 100644 --- a/indra/newview/scripts/lua/require/LLAgent.lua +++ b/indra/newview/scripts/lua/require/LLAgent.lua @@ -116,7 +116,7 @@ end -- Get the nearby avatars in a range of provided "dist", -- if "dist" is not specified, "RenderFarClip" setting is used -- reply will contain "result" table with following fields: --- "id", "global_pos", "region_pos", "name" +-- "id", "global_pos", "region_pos", "name", "region_id" function LLAgent.getNearbyAvatarsList(...) local args = mapargs('dist', ...) args.op = 'getNearbyAvatarsList' @@ -124,14 +124,14 @@ function LLAgent.getNearbyAvatarsList(...) end -- reply will contain "result" table with following fields: --- "id", "global_pos", "region_pos" +-- "id", "global_pos", "region_pos", "region_id" function LLAgent.getNearbyObjectsList(...) local args = mapargs('dist', ...) args.op = 'getNearbyObjectsList' return result(leap.request('LLAgent', args)) end --- Get screen position of your own avatar or any other (if "avatar_id is specified) +-- Get screen position of your own avatar or any other (if "avatar_id" is specified) -- reply contains "x", "y" coordinates and "onscreen" flag to indicate if it's actually in within the current window -- avatar render position is used as the point function LLAgent.getAgentScreenPos(...) diff --git a/indra/newview/scripts/lua/require/UI.lua b/indra/newview/scripts/lua/require/UI.lua index 86aa4095e0..34f3fb75eb 100644 --- a/indra/newview/scripts/lua/require/UI.lua +++ b/indra/newview/scripts/lua/require/UI.lua @@ -141,7 +141,7 @@ end function UI.snapshot(...) local args = mapargs('filename,width,height,showui,showhud,rebuild,type', ...) args.op = 'saveSnapshot' - return leap.request('LLViewerWindow', args) + return leap.request('LLViewerWindow', args).result end -- *************************************************************************** |