You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`classname` designates the entity as an `info_player_counterterrorist`; all it takes to change the type of an entity is to change that value.
51
-
-`origin` is the position of the entity in the map. Changing it in Lumper/Hammer and saving/recompiling will change the position of the entity.
52
-
-`angles` is the rotation of the entity when it spawns.
53
-
54
-
Generally, we're not overly fussy with spawn points in maps. `info_player_start` entities will be prioritized for spawn points, otherwise the first `info_player_terrorist/counterterrorist` in the entity lump will be used.
55
-
56
-
This isn't a required modification, but porters are welcome to clean up the additional spawn points — usually if you have multiple spawns, they're placed in a grid and none are quite centered. To do this, all you need to do is:
57
-
58
-
- Delete all but one of the `info_player_terrorist/counterterrorist` entities
59
-
- Change its classname to `info_player_start` (though not really necessary)
60
-
- Find the center of the room in-game, and set its `origin` to that coordinate
46
+
Entities can have complex logical relationships using _Entity IO_, so avoid manually editing entities unless necessary, and save and reload regularly to test. Often, as with [removing jail timers](/guide/map_submission/map_porting/#jail-timers), you can simply remove a logic_timer without needing to change anything else.
61
47
62
48
## The Pakfile Lump
63
49
64
-
The [Pakfile](<https://developer.valvesoftware.com/wiki/BSP_(Source)#Pakfile>) lump contains all of the map's assets, such as textures, sounds, and models. It's essentially a ZIP file stored inside the map. When the map is loaded, the game mounts those assets in addition to the currently loaded assets from Momentum and other mounted games (e.g. CS:SS, TF2, etc.).
50
+
The [Pakfile](<https://developer.valvesoftware.com/wiki/BSP_(Source)#Pakfile>) lump contains all the map's assets, such as textures, sounds, and models. It's essentially a ZIP file stored inside the map. When the map is loaded, the game mounts those assets in addition to the currently loaded assets from Momentum and other mounted games (e.g. CS:SS, TF2, etc.).
65
51
66
52
The pakfile also stores cubemaps, which are used for environment reflections and lighting in the map. These can be generated by the `buildcubemaps` command in-game.
0 commit comments