This is not longer available as standalone script. It’s integrated in msk_core.
Description
- Opens an Input Window
Usage
Small Input Window
exports.msk_input:openInput('This is a Header', 'This is a Placeholder', function(input)
if not input then return end
print(input)
end)
Big Input Window
exports.msk_input:openInput('This is a Header', 'This is a Placeholder', true, function(input)
if not input then return end
print(input)
end)