| 43 | } |
| 44 | |
| 45 | LuaValue Blackboard::get(NodeParameterType type, String const& key) const { |
| 46 | return m_board.get(type).maybe(key).value(LuaNil); |
| 47 | } |
| 48 | |
| 49 | LuaTable Blackboard::parameters(StringMap<NodeParameter> const& parameters, uint64_t nodeId) { |
| 50 | if (auto table = m_parameters.maybe(nodeId)) |
no test coverage detected