Conventions
This Framework uses a color code for Blueprint comments.
Standard comment.
For warning and information messages. Most of the time, these will be comments in demo Blueprints warning that this is only an example and that you will need to do better in your real projects.
Blueprint Interface event.
Most Unreal Engine users prefix all Blueprint Widgets with "WBP_" without distinguishing their role. This Framework uses a different rule:
- "UI_" : For user interfaces with no direct player interaction.
- "MENU_" : For user interfaces the player can directly interact with.
- "W_" : A Widget used as part of a UI or menu.
Example: (UI_Health)
Example: (MENU_Save)
Example: (W_SaveSlot)