Files
OpenSpace/data/assets/util/testing_keybindings.asset
Emil Axelsson afb889ff82 Feature/serve screenshots (#1003)
* Take screnshots using lua function, returning screenshot number. Add screenshot endpoint.
* Change capitalization from screenShot to screenshot
* Fix screenshot filename collision bug when using multiple windows.
2019-11-01 10:41:59 +01:00

24 lines
594 B
Plaintext

--testing_keybindings.asset
local sceneHelper = asset.require('./scene_helper')
local propertyHelper = asset.require('./property_helper')
local Keybindings = {
{
Key = "F7",
Name = "Take Screenshot",
Command = "openspace.takeScreenshot()",
Documentation = "Saves the contents of the screen to a file in the ${SCREENSHOTS} directory.",
GuiPath = "/Rendering",
Local = true
}
}
asset.onInitialize(function()
Keys = sceneHelper.bindKeys(Keybindings)
end)
asset.onDeinitialize(function ()
sceneHelper.unbindKeys(Keybindings)
end)