Description

This issue is relatively easy to reproduce, e.g., in the timing of switching between the two types of property operations within the same track. It seems to be easy to reproduce the above problem in the timing of switching.There does not seem to be any dependencies between UMovieSceneBytePropertySystem and UMovieScenePiecewiseByteBlenderSystem, such as DefineImplicitPrerequisite. Adding the following code seems to give a definitive result. 

UMovieSceneBytePropertySystem::UMovieSceneBytePropertySystem(const FObjectInitializer& ObjInit)
	: Super(ObjInit)
{
	BindToProperty(UE::MovieScene::FMovieSceneTracksComponentTypes::Get()->Byte);
 
	if (HasAnyFlags(RF_ClassDefaultObject))
	{
		DefineImplicitPrerequisite(UByteChannelEvaluatorSystem::StaticClass(), GetClass());
#if 1  // add_start
		DefineImplicitPrerequisite(UMovieScenePiecewiseByteBlenderSystem::StaticClass(), GetClass());
#endif // // add_end
 
		DefineComponentConsumer(GetClass(), UE::MovieScene::FMovieSceneTracksComponentTypes::Get()->Byte.PropertyTag);
	}
} 

 

Steps to Reproduce

There is no clear procedure to reproduce this, but it sometimes happens when you create a track that changes the Byte property in Sequencer and keep playing that sequence. 

Have Comments or More Details?

There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-221640 in the post.

0
Login to Vote

Unresolved
ComponentUE - Anim - Sequencer
Affects Versions5.45.1
Target Fix5.5
CreatedAug 13, 2024
UpdatedAug 19, 2024
View Jira Issue