mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-05-22 22:06:35 -04:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
14 lines
266 B
C#
14 lines
266 B
C#
using System.Linq;
|
|
|
|
namespace Editor.MovieMaker;
|
|
|
|
#nullable enable
|
|
|
|
partial class TrackView
|
|
{
|
|
public IEnumerable<Keyframe> Keyframes => Blocks.OfType<IProjectPropertyBlock>()
|
|
.SelectMany( x => x.Signal.GetKeyframes( x.TimeRange ) )
|
|
.Order()
|
|
.Distinct();
|
|
}
|