How to rotate an object about around an axis

Is there a way to have an actor rotate around a specified point? My goal is to create a door that rotates about a hinge when the player comes close to it, but I don’t know how to have the door rotate around a point other than the center of the door.

Thanks.

The best practice would be to set the door’s pivot on where the hinges are in your modeling program. If you dont want to do that you can add a Scene component to your BP to use as a null object, set its location to the door hinges, attach the door to that scene component and rotate the scene component.

Thanks Jacky, I was able to set the door’s pivot on the hinge so it could rotate correctly.