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
Copy file name to clipboardExpand all lines: docs/essential/02_clarifications.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,10 +9,12 @@ One frequently asked question is “why do we have to use UDK?” Rocket League
9
9
10
10
**Maps made with UDK 2015 cannot be opened in UDK 2013,** but the reverse is not a problem at all. If everyone makes the switch to UDK 2015, then we will have world peace.
11
11
12
-
## Unreal Engine 4
12
+
## Unreal Engine 4/5
13
13
14
14
UDK is for Unreal Engine 3. Unreal Engine 4 was first released in 2014, and it’s almost a completely new engine. **Unreal Engine 4 cannot be used for Rocket League Mapmaking.**
15
15
16
+
There were some rumors about the game Rocket League moving to Unreal Engine 5, but this was not confirmed by Psyonix. [Read more](/more/ue5) about what this could mean for making custom maps.
17
+
16
18
## File Extensions
17
19
18
20

Copy file name to clipboardExpand all lines: docs/essential/03_installing.md
+13-19Lines changed: 13 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,25 +9,16 @@ title: Installing
9
9
* A full-featured 3D modeling program like [Blender](https://www.blender.org)
10
10
* A capable image editor like [Paint.net](http://www.getpaint.net/download.html#download) or [GIMP](https://www.gimp.org/downloads/) to accompany Blender. If you have Photoshop or something else you prefer, stick with that.
This script is meant to hold your hand through the entire setup process, take care of tedious and error-prone steps for you, then generate a Project folder that starts you off on the right path. Refer to the section below to install UDK properly.
16
+
[This script](https://github.com/RocketLeagueMapmaking/UDK_RL_Setup) is meant to hold your hand through the entire setup process, take care of tedious and error-prone steps for you, then generate a Project folder that starts you off on the right path. Refer to the section below to install UDK properly.
*[Discord support channel](https://discord.com/channels/711882968200904715/712403230516052038)
21
20
22
-
### Newk’s UDK Simple Setup
23
-
24
-
To download this, you will need to make an account with RocketLeagueMods.com, our little corner of the VideoGameMods network. Newk’s package supplies detailed instructions for installing UDK 2015, and provides a huge set of resources to get going quickly. Refer to the section below to install UDK properly.
The steps for the setup using this tool may differ from this guide and the other tools, see the page on the rocketleaguemods website for more information. Note that it might be outdated and it might not have all the latest discoveries added
30
-
:::
21
+
<iframewidth="560"height="315"src="https://www.youtube-nocookie.com/embed/CfelMbPLF6U?si=45jt7nXF4s2ohOn3"title="YouTube video player"frameborder="0"allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"referrerpolicy="strict-origin-when-cross-origin"allowfullscreen></iframe>
31
22
32
23
## Running the Installer
33
24
@@ -41,14 +32,17 @@ After you [download the UDK 2015 Installer](../resources/downloads.md#setup) fro
41
32
42
33
In the Project Name field, enter a good name for your project. I call mine RLMM (Rocket League MapMaking) but yours will be referred to as `{ProjectName}` in this guide. Additionally, this folder will be called `{UDK Folder}` for the rest of this guide.
43
34
35
+
> [!DANGER]
36
+
> You cannot choose a project name with a space or other special characters!
37
+
> This could give you trouble later, such as when running installers.
38
+
44
39
Twiddle your thumbs for a few minutes as it installs prerequisites and then installs UDK.
45
40
46
41
Ignore the extra options, and complete the install.
47
42
48
-
## Things to Change
49
-
50
-
If you used one of the All-in-One packages, you may skip ahead to [and start a UDK project](project_setup.md#starting-a-new-project). If you are manually setting up UDK, or just want to see what is happening behind the scenes with those packages, please continue.
51
-
52
43
:::danger Manual Installation
53
-
If you are going to install UDK manually: don’t launch it, because we have some things to change.
44
+
If you are manually setting up UDK, or just want to see what is happening behind the scenes with those packages, please continue. Don’t launch it, because we have some things to change.
45
+
46
+
Before continuing, [read more](./04_dummy_classes.md) about the files that need to be changed.
47
+
This list is not updated recently and the Dummy classes repository can have more changes in Core and Engine classes!
Copy file name to clipboardExpand all lines: docs/essential/05_project_setup.md
+43-15Lines changed: 43 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,19 +7,53 @@ title: Project Setup
7
7
8
8
UDK is from a different era of software project development, so it doesn’t have a lot of the nice features (or the look) that we have grown accustomed to. It can be a bit annoying to navigate and understand, so the next few sections will be a walkthrough of how you should set it up.
9
9
10
+
:::info Guide paths
11
+
12
+
To customize your guide experience, you can change the paths to your installation. These settings are saved locally in the browser only.
13
+
14
+
<PreferenceSetting
15
+
storeKey="rlmm-path-udk"
16
+
defaultValue="C:\UDK\RLMM\"
17
+
type="input"
18
+
:resetOptions="{ enabled: true }"
19
+
>
20
+
21
+
UDK Installation folder
22
+
</PreferenceSetting>
23
+
24
+
Use the location of [the UDK installer](./installing#running-the-installer) for this path. This path can be referred as `{UDK Folder}` throughout the guide.
You should see in <code><PreferenceSettingstoreKey="rlmm-path-rl"defaultValue="C:\Games\SteamApps\common\rocketleague\"type="input":renderValue="true" />TAGame\CookedPCConsole</code> a list of `.upk` game files. This path can be referred as `{CookedPCConsole}` throughout the guide.
37
+
38
+
You can change more preferences [in the settings page](/settings).
39
+
40
+
:::
41
+
10
42
## Folder Setup
11
43
44
+
> [!TIP]
45
+
> If you used the installer package, these shortcuts are already created for you.
46
+
12
47
I use Windows 10 and the Steam version of Rocket League, so please keep that in mind through the entirety of this guide. Because Rocket League is no longer officially supported on Mac or Linux as of 2019, and installing UDK is also unlikely to work, you're almost certainly going to have to be on Windows also.
13
48
14
-
* My Rocket League install location is `C:\Games\SteamApps\common\rocketleague`
49
+
* My Rocket League install location is <code><PreferenceSettingstoreKey="rlmm-path-rl"defaultValue="C:\Games\SteamApps\common\rocketleague\"type="input":renderValue="true" /></code>
15
50
* All Rocket League assets live inside `\TAGame\CookedPCConsole`
16
51
* Several of my modded maps live inside `\mods`, a folder I created
17
-
`C:\Games\SteamApps\common\rocketleague\TAGame\CookedPCConsole` will be referred to as `{CookedPCConsole}` for simplicity.
18
52
19
53
* As mentioned in the [UDK install process](installing.md), everything will live inside `{UDK Folder}`
20
-
***Each individual custom map should live inside a folder within `{UDK Folder}\UDKGame\Content\Maps\`**
54
+
***Each individual custom map should live inside a folder within <code><PreferenceSettingstoreKey="rlmm-path-udk"defaultValue="C:\UDK\RLMM\"type="input":renderValue="true" />UDKGame\Content\Maps\ </code>**
21
55
* In addition to these folders, I highly highly recommend making two Windows File Explorer shortcuts, or bookmarking these locations
22
-
* One that points to `{CookedPCConsole}`
56
+
* One that points to `{CookedPCConsole}`: <code><PreferenceSettingstoreKey="rlmm-path-rl"defaultValue="C:\Games\SteamApps\common\rocketleague\"type="input":renderValue="true" />TAGame\CookedPCConsole</code>
23
57
* One that points to the Steam Workshop folder for Rocket League. This may be found in the Steam install location (the first half of `{CookedPCConsole}`), but instead of `\common\` it will be `\workshop\content\252950\`. Each downloaded map has a custom identifier in here, and it can be incredibly valuable to open them up in UDK and see how things are made.
24
58
* Keep these within the `\Maps\` folder
25
59
@@ -31,7 +65,7 @@ I use Windows 10 and the Steam version of Rocket League, so please keep that in
31
65
I highly recommend creating folder shortcuts between all of these places, because it’s easy to get lost. It also gets tiresome navigating folders all day.
32
66
:::
33
67
34
-
## Batch Script For Quickly Testing Maps (BSFQTM) <Badgetext="important"type="tip"/>
68
+
## Batch Script For Quickly Testing Maps (BSFQTM) <Badgetext="important"type="tip"/> {#bsfqtm}
35
69
36
70
Create a new text file, then rename it something like UtopiaOverwrite.bat. To use this script, simply drag your map file onto it, and it will overwrite the Rocket Labs Utopia Retro (donut) map, which is not used in any online multiplayer playlist.
For ease of use, I copy this script into the folder of each of my in-progress maps.
60
86
@@ -68,6 +94,8 @@ If you want to have an animated skysphere around your world, use one of the Ligh
68
94
69
95
After making the project, the first thing you are going to want to do is save your new project with a better name than Untitled-3. I recommend putting it in a dedicated folder such as:
0 commit comments