summaryrefslogtreecommitdiff
path: root/indra/newview/scripts/lua/test_snapshot.lua
diff options
context:
space:
mode:
authorMnikolenko Productengine <mnikolenko@productengine.com>2024-07-08 13:56:46 +0300
committerMnikolenko Productengine <mnikolenko@productengine.com>2024-07-08 13:56:46 +0300
commitb27606feca00172cdfd7467ff3e216824f1c9518 (patch)
tree975fae99f92b6deffd0c186595b3f2202853c973 /indra/newview/scripts/lua/test_snapshot.lua
parent66fb45ddc7dd1a994f6b8312687cb73dbb1281dd (diff)
Lua api for Snapshot and demo script
Diffstat (limited to 'indra/newview/scripts/lua/test_snapshot.lua')
-rw-r--r--indra/newview/scripts/lua/test_snapshot.lua15
1 files changed, 15 insertions, 0 deletions
diff --git a/indra/newview/scripts/lua/test_snapshot.lua b/indra/newview/scripts/lua/test_snapshot.lua
new file mode 100644
index 0000000000..d7c878833b
--- /dev/null
+++ b/indra/newview/scripts/lua/test_snapshot.lua
@@ -0,0 +1,15 @@
+local UI = require 'UI'
+
+PATH = 'E:\\'
+-- 'png', 'jpeg' or 'bmp'
+EXT = '.png'
+
+NAME_SIMPLE = 'Snapshot_simple' .. '_' .. os.date("%Y-%m-%d_%H-%M-%S")
+UI.snapshot(PATH .. NAME_SIMPLE .. EXT)
+
+NAME_ARGS = 'Snapshot_args' .. '_' .. os.date("%Y-%m-%d_%H-%M-%S")
+
+-- 'COLOR' or 'DEPTH'
+TYPE = 'COLOR'
+UI.snapshot{PATH .. NAME_ARGS .. EXT, width = 700, height = 400,
+ type = TYPE, showui = false, showhud = false}