Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jdsherbert/unreal-engine-plugin-template

Plugin template boilerplate for Unreal Engine.
https://github.com/jdsherbert/unreal-engine-plugin-template

cpp plugin template unreal unreal-engine unreal-engine-4 unreal-engine-5 unrealengine

Last synced: about 1 month ago
JSON representation

Plugin template boilerplate for Unreal Engine.

Awesome Lists containing this project

README

        

![image](https://user-images.githubusercontent.com/43964243/235778441-9dfb45ab-befd-480b-bc30-5eab5dc2efef.png)

# Unreal Engine Plugin Template




Stars Badge
Forks Badge
Watchers Badge
Issues Badge

-----------------------------------------------------------------------


Unreal Engine Template



License



-----------------------------------------------------------------------
## Overview
A repository containing a dummy Unreal Engine 5 plugin. Contains a folder structure that has been premade to help kickstart the making of new Unreal plugins.

For more information I'd strongly recommend following Epic's gameplay module documentation, found here:
- Full Documentation: https://docs.unrealengine.com/5.0/en-US/plugins-in-unreal-engine/

For Coding standards, please see here:
- https://docs.unrealengine.com/4.27/en-US/ProductionPipelines/DevelopmentSetup/CodingStandard/

If you'd like to get Unreal Engine and use this project template, please follow these steps:
1. Download the Epic launcher: https://www.unrealengine.com/en-US/
2. Install Unreal Engine (whichever version - this template is for 5.3)
3. Clone this project

Lemme know if you have any questions or feedback!

-----------------------------------------------------------------------

# Guide

-----------------------------------------------------------------------
Unreal Engine Guide

-----------------------------------------------------------------------
Plugins are collections of code and data that developers can easily enable or disable within the Editor on a per-project basis. Plugins can add runtime gameplay functionality, modify built-in Engine features (or add new ones), create new file types, and extend the capabilities of the Editor with new menus, tool bar commands, and sub-modes.

-----------------------------------------------------------------------