Hi!
I'm trying to create a Timeline with NGUI but I couldn't find an approach that fits my project needs.
The timeline would basically work like a video editing software timeline:
- It control the Scene's time forward and backward with a cursor dragged over the timeline items
- You can drag and drop item wherever you want in the time line
- Timeline precision is not important, one second per block is enough (no zoom needed)
This is the target idea I want:

The scene itself won't be that long (3-4 minutes max) and it is mandatory that the whole timeline content is always displayed (no scrollview).
My first approach was to generate all my "Second blocks" which are custom DragDropContainer classes with a panel and a grid.
That's ~250 block in a parent grid. It seems not to be too beefy, but I might need a confirmation here.
I made the cursor as a custom DragDrop item that is on a layer above the Second blocks.
This is what it looks like in the Hierarchy:

While this approach seems to be good for the drag and drop items on the timeline, I could't manage to get my timeline cursor working as I want.
I can't find a way to manage both the drag and drop of the cursor and the timeline content.
I have a feeling I'm not going the right way here, but I can't find something else.
Any help would be much appreciated!
