See UDN here: https://udn.unrealengine.com/0D5QP00000TtFaV0AV?fromCase=1
The issue is that in FMovieSceneSequencePlaybackSettings, the TickInterval struct is marked with an EditCondition to only be editable if bInheritTickIntervalFromOwner is false, which it is defaulted to. However, bInheritTickIntervalFromOwner has a meta tag for 'InlineEditConditionToggle', which normally would add a checkbox to the left of the TickInterval property to allow it to be edited, and will hide the bInheritTickIntervalFromOwner property in the details view.
However, that checkbox won't appear because the TickInterval property also has the ShowOnlyInnerProperties tag, and so no row will show for the TickInterval property, and without that row, there is no checkbox.
This effectively makes all of the TickInterval properties uneditable from the details view. And the tick interval on actors isn't exposed to the actor details view- it is settable from blueprint, but not exposed to details, so it's not settable from details view on the Level Sequence Actor either.
Solutions here might be to remove the ShowOnlyInnerProperties tag, or to do more editor-side work to allow ShowOnlyInnerProperties and InlineEditConditionToggle to work with each other.
There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-220776 in the post.
0 |
Component | UE - Anim - Sequencer |
---|---|
Affects Versions | 5.4 |
Target Fix | 5.5 |
Fix Commit | 35308166 |
---|
Created | Aug 1, 2024 |
---|---|
Resolved | Aug 5, 2024 |
Updated | Aug 13, 2024 |