Created
April 20, 2025 07:39
-
-
Save Rumyamyamyang/efa7f32d0f6e57afa345fd5d63465509 to your computer and use it in GitHub Desktop.
How to update Unreal Engine Plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Create project | |
Empty -> C++ `No starter project` | |
### Put plugins | |
Create `Plugins` folder | |
Copy and paste plugin to the `Plugins` folder. | |
### Change version | |
Goto `[Your Plugin]/*.uplugin` | |
Change `EngineVersion` to latest Unreal Engine version | |
### Delete folder | |
Delete `Binaries` & `intermediate` folder | |
### Generate | |
Right click `uproject` on the root of your project | |
`More options -> Generate Visual Studio project files` | |
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | |
### Build | |
Open `sln` | |
Build `Games/[Project Name]` | |
### If error occurs | |
Goto `Engine/UE5` and find that errors and resolve it. | |
https://youtu.be/vMPWc-rdxWM?si=2x7ymv6aHXzCWksq&t=168 | |
You can also see this to resolve. | |
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | |
### Launch Project | |
Launch Project | |
`Edit -> Plugins -> Installed` to check it finally works well! | |
### Delete build files | |
After it works well, delete `Binaries` `Intermediate` folder. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment