Files
UnrealEngine/Engine/Source/Editor/SequencerWidgets/Public/ViewRangeInterpolation.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

13 lines
287 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
/** Enum specifying how to interpolate to a new view range */
enum class EViewRangeInterpolation
{
/** Use an externally defined animated interpolation */
Animated,
/** Set the view range immediately */
Immediate,
};