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 @@ -29,6 +29,7 @@
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Diagnostics;
using Brio.UI.Controls.Editors;

namespace Brio;

Expand Down Expand Up @@ -211,6 +212,7 @@ private static ServiceCollection SetupServices(DalamudServices dalamudServices)
serviceCollection.AddSingleton<MCDFWindow>();
serviceCollection.AddSingleton<PosingGraphicalWindow>();
serviceCollection.AddSingleton<LightWindow>();
serviceCollection.AddSingleton<Sequencer>();

return serviceCollection;
}
Expand Down
11 changes: 11 additions & 0 deletions Brio/Brio.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@
<EmbeddedResource Include="Resources\Embedded\**\*.*" />
</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" />
Expand Down Expand Up @@ -47,4 +52,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