Hello all!
I have a question regarding teleporting back and forth between 2 platforms. They are both named sprites with images and no other behaviors. I named them simply Warp1 and Warp2. My player object is also a sprite named Player with an image(png) and just the Platform movement behavior.
My code is simple;
Condition(s)-On Key Pressed(Space Bar), Player Is Overlapping with Warp1
Action: Player Set Position to Warp2
Condition(s)-On Key Pressed(Space Bar), Player Is Overlapping with Warp2
Action: Player Set Position to Warp1
The code works fine when only one of them is active but I'm running into an issue when I try to warp while both sets of code are active. I press space on Warp1 and just end up in the middle of Warp1 (same thing with Warp2).
Am I missing something obvious here? Its probably right in front of me.