Skip to content

Commit

Permalink
nest properties on setcameraproperty
Browse files Browse the repository at this point in the history
  • Loading branch information
Aeroluna committed Nov 8, 2024
1 parent 6cea9c2 commit bf688d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Vivify/HeckImplementation/CustomDataProperties.cs
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ internal class SetCameraPropertyData : ICustomEventCustomData
internal SetCameraPropertyData(CustomData customData, Dictionary<string, Track> tracks)
{
Id = customData.Get<string?>(ID_FIELD) ?? CAMERA_TARGET;
Property = CameraProperty.CreateCameraProperty(customData, tracks);
Property = CameraProperty.CreateCameraProperty(customData.GetRequired<CustomData>(PROPERTIES), tracks);
}

internal string Id { get; }
Expand Down

0 comments on commit bf688d0

Please sign in to comment.