Difference between revisions of "Ultimate Portal 2 Modding Guide"
(Added basic sourcemod creation) |
m (Small clean up.) |
||
Line 1: | Line 1: | ||
− | This guide will cover all the essential parts of Portal 2 modding. Some methods described may or may not work for other | + | This guide will cover all the essential parts of Portal 2 modding. Some methods described may or may not work for other Source engine games. |
== Preparation == | == Preparation == | ||
− | In this guide, we will create a simple Portal 2 | + | In this guide, we will create a simple Portal 2 Sourcemod, which is going to be called "Portal 2 Modding Guide". |
− | The first thing we need to do is download the Portal 2 Authoring Tools. | + | The first thing we need to do is download the Portal 2 Authoring Tools. These can be found under "Tools" on Steam if you own Portal 2 (Make sure Portal 2 is installed). Run the tool and a window, as pictured on the right, will appear. We will only really need the Hammer World Editor. The model viewer can be handy when debugging models and the Face Poser is needed to build scene image files. |
− | + | [[Image:Portal2AuthoringTools.png|thumb|right|300px|Portal 2 Authoring Tools]] | |
− | |||
− | |||
− | == Creating | + | == Creating The Mod == |
− | To create the | + | To create the Sourcemod, navigate to the steamapps directory. (Usually located at C:\Program Files(x86)\Steam\steamapps). There should be a folder called "sourcemods". If it doesn't exist, create it. |
− | In the sourcemods directory, create a new folder with the name of | + | In the sourcemods directory, create a new folder with the name of the mod that is being created. Put a file in there and call it "gameinfo.txt". Copy and paste this template into the gameinfo.txt: |
<pre> | <pre> | ||
"GameInfo" | "GameInfo" | ||
Line 36: | Line 34: | ||
} | } | ||
</pre> | </pre> | ||
− | After that, restart Steam and | + | After that, restart Steam and it will be listed in the Steam library. |
− | The next step is to create | + | The next step is to create the asset directory and other necessary files. Luckily, Source does this automatically when starting the mod, so all we need to do is start it through Steam. |
Revision as of 09:34, 2 November 2019
This guide will cover all the essential parts of Portal 2 modding. Some methods described may or may not work for other Source engine games.
Preparation
In this guide, we will create a simple Portal 2 Sourcemod, which is going to be called "Portal 2 Modding Guide". The first thing we need to do is download the Portal 2 Authoring Tools. These can be found under "Tools" on Steam if you own Portal 2 (Make sure Portal 2 is installed). Run the tool and a window, as pictured on the right, will appear. We will only really need the Hammer World Editor. The model viewer can be handy when debugging models and the Face Poser is needed to build scene image files.
Creating The Mod
To create the Sourcemod, navigate to the steamapps directory. (Usually located at C:\Program Files(x86)\Steam\steamapps). There should be a folder called "sourcemods". If it doesn't exist, create it. In the sourcemods directory, create a new folder with the name of the mod that is being created. Put a file in there and call it "gameinfo.txt". Copy and paste this template into the gameinfo.txt:
"GameInfo" { game "Portal 2 Modding Guide" // The name of your mod (will be displayed in steam) gamedata "portal2.fgd" icon "resource/icon" // Path to the icon (displayed in steam and, window and task bar) gamelogo 1 SupportsDX8 0 SupportsXbox360 0 FileSystem { SteamAppId 620 // The steamappid of Portal 2 ToolsAppId 211 // The toolsappid of the Source Sdk SearchPaths { Game |gameinfo_path|. // Your own assets Game portal2_dlc2 // DLC 2 assets Game portal2_dlc1 // DLC 1 assets Game portal2 // Base Portal 2 assets platform platform // Core engine files } } }
After that, restart Steam and it will be listed in the Steam library.
The next step is to create the asset directory and other necessary files. Luckily, Source does this automatically when starting the mod, so all we need to do is start it through Steam.