xzdarcy / react-timeline-editor

react-timeline-editor is a react component used to quickly build a timeline animation editor.
https://zdarcy.com/
MIT License
284 stars 82 forks source link

Prevent overlapping actions #44

Closed ujlm closed 5 months ago

ujlm commented 5 months ago

With multiple actions in one row, how to prevent these actions to overlap when dragged?

export const mockData: any[] = [
  {
    id: "0",
    actions: [
      {
        id: "action00",
        start: 2,
        end: 3,
        effectId: "effect0",
      },
      {
        id: "action01",
        start: 4,
        end: 7,
            effectId: "effect1",
      },
    ],
  },
];
ujlm commented 5 months ago

Found it: can be set using minStart and maxEnd on an action.