Set position on timeline (in seconds)
| 17 | |
| 18 | // Set position on timeline (in seconds) |
| 19 | void ClipBase::Position(float value) { |
| 20 | |
| 21 | position = value; |
| 22 | |
| 23 | if (ParentTimeline()) { |
| 24 | // Resort timeline items (internal clips/effects arrays) |
| 25 | Timeline *parentTimeline = (Timeline *) ParentTimeline(); |
| 26 | parentTimeline->SortTimeline(); |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | // Set layer of clip on timeline (lower number is covered by higher numbers) |
| 31 | void ClipBase::Layer(int value) { |
nothing calls this directly
no test coverage detected