I created a function that shows a transition wipe down the screen and then it’s supposed to change scenes once its done playing.
I can’t for the life of me figure out how to change the scene dynamically / be able to choose which scene to change to in the event sheet. I’m able to SELECT a scene, I created a Parameter that asks for the Scene Name. But I don’t know how to actually USE it within the function so it switches scenes, if that makes any sense.
Your issue is that the tween check condition is only done when your function is called. And because the tween has been created just before it is checked, the tween check condition will never be true.
I think you’ll need to create another function using onScenePostEvents, and check the tween has finished in that. You’ll be best to store the scene name in a global variable, as the function won’t take parameters.