| 234 | } |
| 235 | |
| 236 | bool SceneAnimation::Save(const StringView& path) |
| 237 | { |
| 238 | if (OnCheckSave(path)) |
| 239 | return true; |
| 240 | ScopeLock lock(Locker); |
| 241 | MemoryWriteStream stream; |
| 242 | SaveData(stream); |
| 243 | BytesContainer data; |
| 244 | data.Link(ToSpan(stream)); |
| 245 | return SaveTimeline(data); |
| 246 | } |
| 247 | |
| 248 | #endif |
| 249 |