Plugins

Introduction

Hardware Infos is a Blueprint plugin for retrieving and displaying player hardware information in Unreal Engine.
HARDWARE INFOS (FAB Listing)

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:

StructureWhat it returns
Get Hardware DataFull hardware summary
Get CPU DataCPU brand, name, model, series, core count
Get GPU DataGPU brand, name, mark, model, series
Get Ram DataTotal RAM info
Get data from the player's screenResolution and display info
Get Player FPSCurrent framerate
Get Current FPS LimitActive FPS cap
Is VSync EnabledWhether 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

FieldExample value
CompanyAMD
NameRYZEN
Number7
Series Complete5800X
Series5000
Core8

GPU fields

FieldExample value
CompanyNVIDIA
NameGEFORCE
MarkRTX
Model4060
Minimum Model4060
Series4000

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:

ComponentStatus
AMD CPU✅ Supported
Intel CPU✅ Supported (recent addition — ongoing testing)
NVIDIA GPU✅ Supported
AMD GPU✅ Supported (recent addition — ongoing testing)
Some CPU or GPU models may return incomplete data depending on their naming format. This is actively being improved. If you encounter an issue, please report it on the Discord.

Changelog

DateVersionNotes
07/02/2025Performance optimization
26/08/20240.3Intel CPU and AMD GPU support added
16/08/20240.2General update
03/08/20240.1Initial release

Author & License

Made by Mecanes — released under the MIT License.