What it does
DictionaryGetFloat takes dictionary (an integer) and key (a string), and answers a float. That is the first of 2 forms.
Syntax
1
DictionaryGetFloat(dictionary integer, key string) → float2
DictionaryGetFloat(dictionary integer, key string, defaultValue float) → floatParameters
| Name | Type | In forms |
|---|---|---|
| dictionary | integer | all |
| key | string | all |
| defaultValue | float | 2 |
Every form returns
float
Example · generated
Form 1, the short one
DO Print(DictionaryGetFloat(1, "score")) Sync()LOOPForm 2, with every argument
DO Print(DictionaryGetFloat(1, "score", 1.0)) Sync()LOOPDictionaryGetFloat is called and its answer is printed every frame. The DO … LOOP is not decoration: a classic BASIC program ends the moment it runs out of lines, and Sync() is what draws the frame.