grandMA3 User Manual Publication

ReleaseType()

grandMA3 User Manual » Plugins » Lua Functions - Object-Free API » ReleaseType()
Version 2.1

Description

The ReleaseType Lua function returns a string with the type of release for the MA software. All the software versions available from MA Lighting will return "Release". Internally and during development, there can be other release types.

Arguments

This function does not accept any arguments.

Return

  • String:
    The returned string is the release type of the grandMA3 software.

Example

This example prints the release type in the Command Line History:

Lua
return function()
Printf("The ReleaseType is "..ReleaseType())
end