Properties are accessibles by "->" operator.
Table 2.11. Property
| command | description |
|---|---|
| myVar->rangemin = -30; | set minimal value for variable |
| myVar->rangemax = 128.9; | set maximal value for variable |
| myVar->speedmin = 2.5; | set minimal speed for change in variable |
| myVar->speedmax = 5.9; | set maximal speed for change in variable |
| myVar->unit = "cm/s"; | set unit information for variable. This is for information purpose only. Will be implemented in Urbi 2. |
| myVar->delta = 1.0; | set delta for tolerance in the =~= operator |
| myVar->blend = "normal"; | set blend mode; normal, mix, add,queue, discard, cancel are possible values. |