I’m trying to incorporate a plugin on github called PredictedMovement to a small project of mine, which extends the CMC and derives from UCharacterMovementComponent
and ACharacter
to include abilities such as to sprint, prone, and to have stamina.
If you read the source code of the plugin on github, I followed the link branch and read the README to set-up things correctly. I have my custom character class inheriting from ASprintCharacter
, and I’m using AStaminaMovement
as my movement component.
The project builds successfully, but when I start a game (PIE) with a listen server and a client, I immediately crash during the assembly, the only thing I get from the debugger is that it encountered an exception, access violation reading location… And on the threads, I notice FRootMotionSourceGroup::HasActiveRootMotionSources(void)const __ptr64 0x00007ffb31efda20
.
I know it’s not easy to determine what exactly is causing it, especially when I’m not showing my own code, but that’s due to it being thousands of lines, but I would like to at least understand what doesFRootMotionSourceGroup::HasActiveRootMotionSources(void)const __ptr64 0x00007ffb31efda20
have to do with the crash if it even does, that way, I can probably get closer to where I messed up.