nansP
(nansP)
1
Hi guys,
I tried to compile from the source code (last master commit), and this error occurred:
It says that FindRelatedInstanceHandle is not a member of UE::MovieScene::FInstanceRegistry, and indeed it is not as you can see here:
https://github.com/EpicGames/UnrealEngine/blob/master/Engine/Source/Runtime/MovieScene/Public/EntitySystem/MovieSceneInstanceRegistry.h
This error seems to occured since this commit https://github.com/EpicGames/UnrealEngine/commit/4f4f258ceec100d9c472dc8f34d2a1729067c183
Colinzcli
(Colinzcli)
2
Hi NansP,
Same thing occured to me, and I think someone forgot to commit MovieSceneInstanceRegistry.h after modification at this exact time.
Just add the function in FInstanceRegistry class temporarily as below:
const FInstanceHandle FindRelatedInstanceHandle(const FInstanceHandle& InHandle, const FMovieSceneSequenceID SeqId) {
return InHandle;
}
This works for me.
And wait for update for complete fix or you should checkout release branch.
B.R.
Colin