Actors and Geometry

A definition of Actors and how they are used in level design, including placement and manipulation techniques.

Choose your operating system:

Windows

macOS

Linux

An Actor is any object that can be placed into a level, such as a Camera, static mesh, or player start location. Actors support 3D transformations such as translation, rotation, and scaling. They can be created (spawned) and destroyed through gameplay code (C++ or Blueprints).

In C++, AActor is the base class of all Actors.

No matter the type of Actor you are using in your level - be it a light, a Static Mesh, a Particle System Emitter Actor, or anything else - you will need to know a few basics on how to create and manipulate them in your scenes.

This involves a few integral tasks: placing Actors, selecting Actors, positioning Actors, and modifying Actors. In other words, to create a level, Actors will be placed into a map, moved around to create an environment, and their properties will be modified to cause them to look or behave appropriately.

Working with Actors

Actor Types

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss