Files
UnrealEngine/Engine/Source/Editor/SequencerWidgets/Public/ViewRangeInterpolation.h
2025-05-18 13:04:45 +08: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,
};