summaryrefslogtreecommitdiff
path: root/indra/newview/scripts/lua/test_snapshot.lua
blob: d7c878833b0a02b32d9fa568c914d123f83e2444 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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}