initial commit
This commit is contained in:
parent
6715289efe
commit
788c3389af
37645 changed files with 2526849 additions and 80 deletions
|
|
@ -0,0 +1,28 @@
|
|||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace UnityEditor.Timeline
|
||||
{
|
||||
interface IMoveItemMode
|
||||
{
|
||||
void OnTrackDetach(IEnumerable<ItemsPerTrack> itemsGroups);
|
||||
void HandleTrackSwitch(IEnumerable<ItemsPerTrack> itemsGroups);
|
||||
bool AllowTrackSwitch();
|
||||
|
||||
double AdjustStartTime(WindowState state, ItemsPerTrack itemsGroup, double time);
|
||||
|
||||
void OnModeClutchEnter(IEnumerable<ItemsPerTrack> itemsGroups);
|
||||
void OnModeClutchExit(IEnumerable<ItemsPerTrack> itemsGroups);
|
||||
|
||||
void BeginMove(IEnumerable<ItemsPerTrack> itemsGroups);
|
||||
void UpdateMove(IEnumerable<ItemsPerTrack> itemsGroups);
|
||||
void FinishMove(IEnumerable<ItemsPerTrack> itemsGroups);
|
||||
|
||||
bool ValidateMove(ItemsPerTrack itemsGroup);
|
||||
}
|
||||
|
||||
interface IMoveItemDrawer
|
||||
{
|
||||
void DrawGUI(WindowState state, IEnumerable<MovingItems> movingItems, Color color);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue