Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Brio/Brio.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using Brio.UI.Controls.Editors;
using System.Linq;
using System.Text;
using System.Threading;
Expand Down Expand Up @@ -226,6 +227,7 @@ private static ServiceCollection SetupServices(DalamudPluginService dalamudServi
serviceCollection.AddSingleton<MCDFWindow>();
serviceCollection.AddSingleton<PosingGraphicalWindow>();
serviceCollection.AddSingleton<LightWindow>();
serviceCollection.AddSingleton<Sequencer>();

return serviceCollection;
}
Expand Down
14 changes: 14 additions & 0 deletions Brio/Brio.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@
</ItemGroup>

<ItemGroup>
<None Include="UI\Controls\Sequencer\Memory\LICENSE" />
<None Include="UI\Controls\Sequencer\Memory\README" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="EmbedIO" Version="3.5.2" />
<PackageReference Include="Glamourer.Api" Version="2.6.0" />
<PackageReference Include="K4os.Compression.LZ4.Legacy" Version="1.3.8" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.2" />
<PackageReference Include="MessagePack" Version="3.1.4" />
<PackageReference Include="YamlDotNet" Version="16.3.0" />
Expand All @@ -47,4 +55,10 @@
<PackageReference Update="DotNet.ReproducibleBuilds" Version="1.2.39" />
</ItemGroup>

<ItemGroup>
<Reference Include="ImSequencer">
<HintPath>..\..\MockSequencer\ImSequencer\ImSequencer\bin\Debug\net9.0-windows\ImSequencer.dll</HintPath>
</Reference>
</ItemGroup>

</Project>
9 changes: 9 additions & 0 deletions Brio/Game/Timeline/TimelineManager.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using System.Numerics;

namespace Brio.Game.Timeline;

public class TimelineManager
{
public record CameraKeyframe(int Frame, Vector3 Position, Quaternion Rotation, float FoV);

}
Loading
Loading