Returns /value[] as a list.
(path)
| 576 | show_values('/sim/replay/log-raw-speed-multiplayer-post-user-absolute-distance') |
| 577 | |
| 578 | def get_values(path): |
| 579 | ''' |
| 580 | Returns <path>/value[] as a list. |
| 581 | ''' |
| 582 | ret = [] |
| 583 | for item in fg.fg.ls(path): |
| 584 | if item.name == 'value': |
| 585 | ret.append(item.value) |
| 586 | return ret |
| 587 | |
| 588 | # Check that distance between user and mp is constant. |
| 589 | # |