Hi, I have a whole bunch of blueprint space in my Event Graph dedicated to advanced movement coyote time smooth crouch etc. I want to move all this code to another Graph inside the same blueprint so I made another graph called AdvancedMovement however I cannot get the node into the new graph with either cut and paste or copy and paste.
Cut and paste problem. When the cut happens I am ‘cutting’ the timelines that I use out then when I go to paste them back in again they don’t have a reference and just paste down as a new timeline.
Copy and paste problem because all my custom events already exist when I do a copy instead of a cut whenever I go to do a paste they just reference an empty event.
When you cut or copy a timeline and pasting it on any other site, it is renamed but all its values remains the same as the original one. You only need to change its name to the one you want and that’s it.
In addition, you cannot have copies of the same timeline, every timeline is unique, which doesn’t allow you to use the same timeline in different parts of the code. What you can do is to use the same variables to modify different timelines and get the same results.
Regarding the problem copying the events, you cannot have events with the same name in a blueprint regardless of the graph your are using.
What I recommend you to do is to create Events or Functions for every part of your code that IS NOT a timeline, and then call them whenever you want, using new timelines. It will be much clear and will allow you to use the same code without copying it and using new timelines.
Ope this helps you! Let me know if you need more help!