Web API Parameter
“Level” is a numeric value denoting the level a given thing (e.g. playback) is to be set to, fired at, or whatsoever.
.level_level=1level_level=0.45 or level_level=.45level_level=0level_levelDelta=0.2 or level_levelDelta=.2level_levelDelta=-0.55 or level_levelDelta=-.55If the parsing method is given incorrectly or not given at all then Titan guesses the numeric value to be the absolute level:
level=0.4 or level_dummy=0.4 both are treated as absolute level 40%.
However leveldelta (small letter d!) is treated a different parsing:
level_leveldelta=.2
throws this error
“Error: Das Objekt mit dem Typ \”System.Boolean\“ kann nicht in den Typ \”Avolites.Menus.Maths.LevelAdjust\“ konvertiert werden.” (cannot convert System.Boolean to LevelAdjust)
level_level= results in “Error: Die Eingabezeichenfolge hat das falsche Format.” (wrong format)
Reason: the value is missing
level_level results in “Error: Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt.” (no object instantiated)
Reason: the equal sign = (and the value) are missing, thus the parameter isn't recognized at all