How would you create a flying zone using Blueprints?

I have a trigger box area in the sky where I’d like my player to warp up there, and enter the zone, and be able to fly. Flying abilities will not be available unless they are inside this huge box. Either that or an event could turn off their flying abilities. It’s the same effect. Some ideas? :slight_smile:

You can trigger a “Set Movement Mode” node and change the movement mode to flying after the “Event Actor Begin Overlap” detects a collision. To make sure that the player is the one being collided with, you can use the “== (object)” node to check if the other actor is indeed the player and plug it into a branch node between the Begin Overlap and Set Movement Mode nodes. To end the flying mode, you can use the “Event Actor End Overlap” node the same way, just select the movement mode to walking this time.

1 Like