This article relates to the game "Team Fortress 2". Click here for more information.
This article's documentation is for anything that uses the Source engine. Click here for more information.

Building Respawn Room

From Valve Developer Community
< Ko
Jump to navigation Jump to search

{{subst:#if:|||

Important step for replacing wikilinks after you've created this page

After you click 'Edit' do what the image shows. If you can't see editing toolbar you need to enable it in 'Preferences' -> Editing -> checkbox 'Enable the editing toolbar'

Preload - Language Links Replace.jpg
See also:  {{LAuto}}

--- DON'T JUST BLINDLY DELETE THIS PART. DO REPLACE THE LINKS AND CATEGORIES. THE PICTURE SHOWS HOW TO USE IT ! ---

SEARCH FOR: \[\[(?!#|File(?:[ _]talk)?:|Image(?:[ _]talk)?:|Media:|Template(?:[ _]talk)?:|MediaWiki(?:[ _]talk)?:|Talk:|Category[ _]talk:|Project[ _]talk:|Valve[ _]Developer[ _]Community[ _]talk:|Help[ _]talk:|User(?:[ _]talk)?:|c:|commons:|Dictionary:|Google:|GoogleGroups:|IMDB:|M:|Meta:|Metawikipedia:|MW:|SdkBug:|SourceForge:|Steampowered:|W:|Wiki:|WikiBooks:|Wikipedia:|Wikiquote:|Wiktionary:|WP:)(:?(?:Category|Category|Help|Project|Valve[ _]Developer[ _]Community|Special|)(?:[^\|\]]+))(\|?.*?)\]\]

REPLACE WITH: {{subst:LAuto|$1$2}}

}}
Under construction.png
This page is actively undergoing a major edit.
As a courtesy, please do not edit this while this message is displayed.
If this page has not been edited for at least several hours to a few days, please remove this template. This message is intended to help reduce edit conflicts; please remove it between editing sessions to allow others to edit the page.

The person who added this notice will be listed in its edit history should you wish to contact them.

Info content.png
This page is being translated.
You can help by finishing the translation.
If this page cannot be translated for some reason, or is left untranslated for an extended period of time after this notice is posted, the page should be requested to be deleted.
Also, please make sure the article complies with the alternate languages guide.(en)
English (en)한국어 (ko)Translate (Translate)

Warning: Display title "Building Respawn Room" overrides earlier display title "Building Respawn Rooms".

Let's learn how to view works created by other users on hammer.

Operate BSPSRC

bspsrc is a converter bsp files with vmf that can be modified in hammer.

Download the file in this link that matches your operating system, unzip it, and run bspsrc.bat.

Before decompile, set BSP format to Team Fortress 2. This will make opening vmf files with Hammer less error prone. Then You can input a bsp file via 'add' and convert it to a vmf file via 'decompile'.

window when running bspsource
Set the bsp format to Team Fortress 2.


Open In Hammer editor

Note.png메모:Files converted from BSP to VMF using bspsrc may not run properly in Hammer++. In simple terms, the standard Hammer is more forgiving, while Hammer++ is stricter and more precise. Hammer tends to ignore certain data losses that occur during the BSP-to-VMF conversion process, but Hammer++ does not. files that open just fine in Hammer might produce errors or fail to open in Hammer++. If Hammer++ refuses to open a file, try using a different converter instead of bspsrc, or open the file in Hammer first, save it, and then try opening it in Hammer++.
Note.png메모:If there are non-ASCII characters (e.g. Korean, Japanese, Chinese) in the map file path, Hammer++ will crash. If you have already opened a file in a path that contains non-ASCII characters, you can check the broken font by checking recentfile in bin/x64/hammerplusplus/hammerplusplus_settings.ini. Delete those elements and run hammer++ again.

In this article, we’re going to get some idea the spawn room and regenerating supply. Let's start by opening the vmf file in Hammer.


Visgroups

There are so many elements that it's hard to figure out.


The VisGroup feature allows mappers to inspect and edit maps more easily by hiding unnecessary elements.

It lets you group objects together and toggle their visibility in the viewport for better control and organization.

Visgroup panel.png For analyzing a map, it’s recommended to enable only Point Entities, Brush Entities, and Game Logic in the VisGroup panel.

Visgrouped screen.

'show' button in visgroup panel toggles the effect of temporarily checking all elements. Pressing 'show' again will cause only the originally checked elements to appear in the viewport.


Use VisGroups to help identify and isolate objects in a complex map.

Note.png메모:To learn how to use VisGroups in detail, refer to Grouping and VisGrouping.

Find Entities

Respawn Room

Regenerate Supply

Note.png메모:There are many interesting topics to explore — like the doors that separate each round, Control Points, and materials with func properties — but for now, we’ll focus on the essential knowledge needed for general-purpose mapping.