-
Notifications
You must be signed in to change notification settings - Fork 2
Home
Welcome to the SimpleBlueprintGame-UE4 wiki!
Project was created in 1 week as a challenge/test. It includes a variety of features that apply to many game types. No replication. The focus on this project was to display how to properly build different types of systems. Nothing is perfect, but it's a great example for those looking to increase their blueprint skills. I use a modular design, data-driven systems, organized file structure, event dispatchers, and made use of blueprint Macro/Function libraries.
Includes the ability to quit and play the game. It also lists all your high scores.
Includes a mission to make it from point A to point B. Collect keys to progress, collect coins and stay away from damage to get the highest score. Item location is randomized and there are dangers along the way. Everything you see below is used in the example.
Functions similar to frogger-style highways/cars. Cars are generated and can easily be customized with settings.
"Fires" a laser, damages player. Customizable with settings.
Adjustable damage on a timer within a volume.
Gives points to the player based on remaining health and points. Scores are saved and displayed in a high score menu.
- High Score Menu
- Easily Adjustable Point Assignment on Death
- Save-Game variables
Allows the player to pickup items that can be referenced later in game. The example items include different keys for doors, powerups, and coins.
- Coins
- Powerups (God-mode, Double-Jump)
- Keys (Red/Blue/Yellow)
- Data Driven Item Creation
- Easily add save-game to inventory if desired.
- Modular, Component Based.
- Inventory Widget
A game-mode component that's designed to handle item spawning. Place item spawners around your level with a defined item spawn class, then define how many of the item you want to spawn in the gm component. The component ensures all spawn requirements are spawned on begin play.
- Define Spawn Requirements
- Place Spawners
Allows you to easily add interaction ability to your players and items. Uses components.
- Door
- Player Interaction Component (initiates interaction)
Component Based, easily add customizable health/damage/death to your player.
- Health Widget