I found a few very cool parkour systems, and i try to combine them but obviously it doesn’t work because the code can’t find many references
I’m still very new to it, but how to combine a few systems and make sure they work ?
For example i have 2 projects I downloaded
One project has a third person character blueprint with a wall run system
The other one has third p char bp with a climbing system
How do I combine it into a one blueprint and not break everything ?
I’m not sure what you mean by it “Can’t find many references”. Do you mean variables that the blueprints are using individually?
First you’ll want to go into the project you want to copy FROM and right click your character blueprint in the content browser, then use “Asset Actions → Migrate” to migrate that character over. Make sure you select everything it suggests as these are the things it’s probably trying to reference that it can’t.
Merging two systems like this is going to be difficult, especially if they aren’t mainly using Blueprint components. If all of the code is on the character, you’re going to have to simply copy it to the other one piece by piece to really make sure you don’t miss a variable or anything. Make sure you remake every Function, and also ensure the movement component has similar settings. You need to get everything copied over and have no errors first- then you can worry about merging variables and things like that for brevity.
I am sorry to say that it will take some work and learning, but it will be a very good learning experience!
Hey, thank you so much for the amazing answer ! yeah it makes sense now, i thought it’s gonna be much easier, just find plugins and blueprints you like, combine them together in a few minutes and you good to go haha, but i guess than’t not how it works
Gonna have to learn more, thank you ^^