| 329 | } |
| 330 | |
| 331 | void Animation::loadCode(vili::node& code) |
| 332 | { |
| 333 | for (vili::node& command : code.at("code")) |
| 334 | { |
| 335 | Debug::Log->trace(" <Animation> Parsing Animation command '{}'", command); |
| 336 | m_code.push_back(command); |
| 337 | } |
| 338 | if (m_code.empty()) |
| 339 | m_feedInstructions = false; |
| 340 | } |
| 341 | |
| 342 | void Animation::applyParameters(vili::node& parameters) |
| 343 | { |
no test coverage detected