One of the great things about Unreal Engine is that it is open-source and accepts pull requests (also known as PRs) from users. Last year I tried my hand at submitting a few fixes and improvements to the engine and some were even accepted!

When I first started I remember it was relatively tricky to find a single source of information on how to submit a pull request so here's what you need to know to submit a pull request to Unreal Engine.

Set-up

First you will need access to the Unreal Engine GitHub. Luckily there's a great tutorial from Epic on how to do this.

Creating a Pull Request

1. Create a Fork

If you have not already done so, create a fork of Epic/UnrealEngine on GitHub.

2. Get latest in ue5-main (or master)

It's important to know whether you want to push a change to Unreal Engine 5 or Unreal Engine 4:

  • For Unreal Engine 5, use the ue5-main branch.
  • For Unreal Engine 4, use the master branch.

On your machine, switch to the correct branch and make sure to get latest.

Note: it is very important that you only submit to the correct branch for the correct version! Otherwise your pull request won't get accepted!

3. Make a new branch from ue5-main

Make a new branch from ue5-main, and name it something related to the feature or bug you wish to submit. I have previously used descriptive names like:

4. Write your feature/bugfix

This will be the bulk of your work, but there are a few things to remember while you are doing it:

  • Try to change as little as possible. Your diffs should look very clean, changing only what is necessary.
  • Add comments to your code where appropriate. Explain what your code is trying to do.
  • Make as few commits as possible to get the feature/bugfix implemented.

Test your code! One way to do this without having to compile the entire engine every time is to create a test project that uses your custom engine.

5. Create the pull request

Now that your feature is complete, On the Pull Requests page for your fork, click New pull request.

Then on the next page, you should see the name of your fork next to head repository. To the right of that click compare and choose the new branch that you have created.

The page should update to show whether your changes can be automatically merged or not. If they cannot it might mean that you haven't merged the latest changes from ue5-main into your branch.

You should now have an input area where you can enter the details of your pull request:

  • Clearly and simply describe what your change does.
  • In the comment, describe what did Unreal do previously? What does it do now?
  • If appropriate, include links to screenshots. It will help the people triaging requests understand what the change is about.

You can check out my pull requests for some examples:

6. Wait

Depending on the size and importance of your change, it might take a while for it to be merged. At least a month. Keep an eye on your GitHub notifications to see if there is any progress on the pull request.

Posted: