Introduction
Hardware Infos — Introduction
Hardware Infos is a Blueprint plugin that lets you read the player's hardware configuration at runtime — CPU, GPU, RAM, screen, and FPS data — without any C++ code.
Requirements
- Engine version: UE 5.2 → 5.x
- Platforms: Windows, Mac
What Does It Do?
The plugin exposes a set of Blueprint structures you can call from any Actor, Character, or Widget to retrieve hardware details:
| Structure | What it returns |
|---|---|
Get Hardware Data | Full hardware summary |
Get CPU Data | CPU brand, name, model, series, core count |
Get GPU Data | GPU brand, name, mark, model, series |
Get Ram Data | Total RAM info |
Get data from the player's screen | Resolution and display info |
Get Player FPS | Current framerate |
Get Current FPS Limit | Active FPS cap |
Is VSync Enabled | Whether VSync is on |
These structures work in all Blueprint types — Actor, Character, GameMode, Widget, and more.
Use Cases
For game developers: Detect weak hardware configurations and adjust graphics settings automatically (lower shadow quality, disable ray tracing, etc.).
For server admins: Collect hardware profiles from players to diagnose performance issues faster and provide accurate support.
For QA and testing: Log hardware data alongside bug reports to reproduce issues on the correct configuration.
CPU & GPU Data — Details
CPU fields
| Field | Example value |
|---|---|
| Company | AMD |
| Name | RYZEN |
| Number | 7 |
| Series Complete | 5800X |
| Series | 5000 |
| Core | 8 |
GPU fields
| Field | Example value |
|---|---|
| Company | NVIDIA |
| Name | GEFORCE |
| Mark | RTX |
| Model | 4060 |
| Minimum Model | 4060 |
| Series | 4000 |
Requirements
- Engine version: UE 5.2 → 5.x
- Platform: Windows
- Prerequisites: Basic knowledge of Blueprints (structures)
Hardware Compatibility
The plugin has been tested on the following hardware:
| Component | Status |
|---|---|
| AMD CPU | ✅ Supported |
| Intel CPU | ✅ Supported (recent addition — ongoing testing) |
| NVIDIA GPU | ✅ Supported |
| AMD GPU | ✅ Supported (recent addition — ongoing testing) |
Changelog
| Date | Version | Notes |
|---|---|---|
| 07/02/2025 | — | Performance optimization |
| 26/08/2024 | 0.3 | Intel CPU and AMD GPU support added |
| 16/08/2024 | 0.2 | General update |
| 03/08/2024 | 0.1 | Initial release |
Author & License
Made by Mecanes — released under the MIT License.