In fast-paced arena shooters, level readability, engagement flow, and performance stability are critical to ensuring a smooth player experience. To better understand how players and bots were engaging with levels, I developed a telemetry visualization tool that collects and displays in-game data directly within Unreal Engine 5.4. This allowed me to analyze movement patterns and lane utilization, high kill zones and possible power positions, and client FPS performance after playtests were conducted. Using this tool, I identified map traversal inefficiencies for both players and bots, spawn imbalances, and performance bottlenecks, leading to key optimizations across multiple levels.
Displaying Kill & Death Data
After collecting telemetry from matches, I wrote a script to parse the CSV data and visualize it by spawning colored cubes for killer and victim positions, drawing lines between them to indicate relativity. This provided level designers with a clear view of player interactions in 3D space, something a heatmap alone couldn’t convey.
Displaying Positional Data - Players
I set up the positional tracker to record key data like positions, facing, timestamps, current life, client FPS, and player names. This allows level designers to filter and analyze player movement across lanes and spaces at different points in the match. These insights help identify underused or congested areas, enabling designers to adjust the level layout for better flow and optimize player engagement.
Displaying Positional Data - Bots
In addition to helping level designers optimize levels for players, the positional telemetry also revealed areas that needed improvement for bot navigation. By analyzing the data, we identified spots where additional nav links were required to allow bots to traverse more effectively. This insight enabled us to improve bot movement and, in turn, enhanced the overall level flow, leading to more dynamic interactions between bots and players.
Telemetry Grouping
To be able to efficiently display telemetry in a heatmap, I created a scalable grid-based system with an indexing function that maps 3D positions into a 1D array of data structures using C++ and Blueprints. This allows level designers to adjust the overall grid size and individual cell sizes to meet level needs while enabling efficient data retrieval for generating heatmaps in the editor.
Kill & Death Heatmaps
The victim and killer heat map offers a dynamic, scalable view of player interactions, highlighting areas with frequent deaths and concentrated kills. By feeding the data into a material and adjusting alpha for color and opacity, I highlighted kill and death zones, helping identify potential power positions or overly dangerous areas. This heat map offers valuable insights for informing level adjustments, ensuring balanced encounters and adherence to the intended level design.
Positional Heatmap
The positional heat map groups player and bot positions, offering insight into underutilized or overrun areas and paths. By feeding position data into the material’s alpha channel, areas with higher foot traffic become darker, helping to visualize where players may naturally converge. This is especially useful for identifying power positions and detecting where specific players might be camping by filtering data by player names for a given match.
Optimizing Levels for Client FPS
While working on the positional telemetry visualizer, I realized that adding client FPS data alongside player positions and facing could provide valuable insights for performance optimization. Since I was already collecting other key data at regular intervals for visualization, incorporating this extra layer was relatively simple. After running large-scale 7-player playtests on each map, I filtered the data to focus on the lowest 5% of FPS per client, which proved more effective than using mean or median FPS per client in identifying performance bottlenecks. This approach enabled us to pinpoint areas in need of optimization, particularly with lighting and shader usage in our levels.
Filtering the lowest 5% FPS per client revealed consistent slowdowns near the center of DM_Divinity. Seeing that players faced all directions in this area ruled out the central rotating platform, leading to an investigation of lighting, which turned out to be the cause.
For DM_Apotheosis, FPS drops weren’t as noticeable during playtests, but the tool revealed clusters of low FPS scattered across the map. Filtering the data showed consistent low client FPS in specific areas, leading us to investigate lighting—confirming it as the main cause of the performance issues on this map.
In one particular match on DM_Transcendence, many players reported low FPS when trying to grab the power weapons. By analyzing the telemetry data, we used the low client FPS filter and player facing visualization to trace the issue to a material at the center of the map, below the spawner. The shader, which used Nanite, was confirmed as the main cause of the performance drop.
©2025 All Rights Reserved By Corbyn LaMar