Actor Browser

From A Hat in Time Wiki
Jump to navigation Jump to search

Actor Browser (also known as Actor Classes) is a section containing all scripts that are found in the Editor, these classes are coming from Unreal Engine 3, A Hat in Time's source code, your scripts that can be found in the Classes folder inside the mod directory, if there's workshop mods loaded into the Editor they will also appear in this menu.

Actor Classes contains every single class that extends Actor (regardless of how far), they can placed dragged and dropped in the editor to the map as long as they have the keyword placeable specified in the class definition, if it isn't it will look greyed out.

Class My_Amazing_Actor extends Actor
    placeable;

Actor Classes is a home for every mechanic, NPC, Enemy and utility that makes A Hat in Time the game we know it, Falling Platforms, Falling Dock Mafia, Pons, Health Pons, Collectibles, NPCs, Bosses and so on are all found here.

Further Reading