mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
Initial commit
This commit is contained in:
commit
3c7cc0c973
8391 changed files with 704313 additions and 0 deletions
|
@ -0,0 +1,54 @@
|
|||
using UnityEngine;
|
||||
|
||||
namespace UnityEditor.Timeline
|
||||
{
|
||||
enum PlaybackScrollMode
|
||||
{
|
||||
None,
|
||||
Pan,
|
||||
Smooth
|
||||
}
|
||||
|
||||
static class PlaybackScroller
|
||||
{
|
||||
public static void AutoScroll(WindowState state)
|
||||
{
|
||||
if (Event.current.type != EventType.Layout)
|
||||
return;
|
||||
|
||||
switch (state.autoScrollMode)
|
||||
{
|
||||
case PlaybackScrollMode.Pan:
|
||||
DoPanScroll(state);
|
||||
break;
|
||||
case PlaybackScrollMode.Smooth:
|
||||
DoSmoothScroll(state);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void DoSmoothScroll(WindowState state)
|
||||
{
|
||||
if (state.playing)
|
||||
state.SetPlayHeadToMiddle();
|
||||
|
||||
state.UpdateLastFrameTime();
|
||||
}
|
||||
|
||||
static void DoPanScroll(WindowState state)
|
||||
{
|
||||
if (!state.playing)
|
||||
return;
|
||||
|
||||
var paddingDeltaTime = state.PixelDeltaToDeltaTime(WindowConstants.autoPanPaddingInPixels);
|
||||
var showRange = state.timeAreaShownRange;
|
||||
var rightBoundForPan = showRange.y - paddingDeltaTime;
|
||||
if (state.editSequence.time > rightBoundForPan)
|
||||
{
|
||||
var leftBoundForPan = showRange.x + paddingDeltaTime;
|
||||
var delta = rightBoundForPan - leftBoundForPan;
|
||||
state.SetTimeAreaShownRange(showRange.x + delta, showRange.y + delta);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue