Frictional Games Forum (read-only)

Full Version: Naming Level Doors
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have tried looking, but cannot find any tutorials on this Sad

I wish to 'name' my doors;
aka. When a player looks at a door, the door's name comes up on the screen (eg. the way it says things like "Wine Cellar" and "Laboratory" in the main game)

Any advice would be appreciated Smile
Select the door in the level editor, then click on the Entity tab on the right of the screen. Scroll down until you see 'TextEntry'. That's the entry name that you will add in your lang file (Category is always Levels). Then you just need to add that entry into your lang file. For example, if you called your entry "CellarDoor", you're lang would look like this:
Code:
<LANGUAGE>
    <CATEGORY Name="Levels">
        <Entry Name="CellarDoor">Cellar</Entry>
    </CATEGORY>
</LANGUAGE>
Perfect, thanks! Big Grin