#Linker error when making a custom child class of WalkingMode
1 messages · Page 1 of 1 (latest)
I'll make a thread so maybe someone can see this in the future and answer it because i'm unable to find any answers when researching this .
The Interface definition is missing the Module API macro. so it can't be used outside of mover module in c++. can be found inside ModularMovement.h. you either edit mover plugin by putting it in your project. or not use the turn generator in c++ until that is fixed.
Okay thank you, I kept asking people if I needed to move the mover plugin into my project but everyone kept saying no.
I basically want to make some minor modificaitons to the existing system in a way that I can easily include future updates to mover, so I'm just trying to baby steps by tweaking the existing walk mode
let me try copy the plugin folder over
copying folder over does not fix your issue. you need to make the change i posted in the screen shot and build. meaning you will be changing the plugins and updates will have to be done manually.
YEah that's fine.
so I need to copy the plugin to my project and edit that file?
I'm a c++ noob so I apologize, i'm trying to learn.
yes, you can also just not add the turn generator code. i believe by default there's no turn generator used
Oh, okay, I don't understand this well enough to know what is what, I was just trying to replicate it entirely (not to break anything) then to modify how it calculates the velocity
But if you're saying the turngenerator isn't even used right now i'll just comment it out, that sounds less painful
Thank you very much for responding.