| 230 | } |
| 231 | |
| 232 | void Sequence::AddTrack(const std::string& name, const std::shared_ptr<Sampler>& track) |
| 233 | { |
| 234 | m_Tracks[name] = track; |
| 235 | m_Duration = std::max(m_Duration, track->GetEndTime()); |
| 236 | } |
| 237 | |
| 238 | void Sequence::Load(Json::Value& node) |
| 239 | { |
nothing calls this directly
no test coverage detected