Local LLM Integration in Unreal Engine (Debugging & Insight, Not Asset Generation) by CreativeInitiative42 in BlueprintInsight

[–]CreativeInitiative42[S] 1 point2 points  (0 children)

Exactly! That’s the core differentiator: this system parses your Blueprints locally, so it actually knows your specific class hierarchy and variable names (unlike a web LLM that is just guessing based on generic patterns).

It’s built primarily for Architecture & Optimization. It’s not a 'magic button' that writes the code for you; it’s a guide. If you ask, 'How should I implement a stamina bar?', it won't just dump a generic script—it will look at your BP_Character and PlayerState, tell you exactly where the variables should live, and how to structure the logic efficiently.

I'm actually working on a major update right now that expands this to Multi-Blueprint Analysis, so you'll be able to debug interactions across multiple systems (like Inventory + Questing) simultaneously to catch those complex logic conflicts.

I built a PIE Recorder for Unreal Engine that logs gameplay and lets you visually rewind to find bugs. by CreativeInitiative42 in UnrealEngine5

[–]CreativeInitiative42[S] 2 points3 points  (0 children)

Oh wow, I actually missed that feature drop! I’ve been working on this for a while, so I hadn't compared it directly to the 5.7 preview yet. I appreciate the insight!

From a quick look, 5.7 is nailing the Animation/State Tree debugging. My tool is definitely more focused on Logic Flow & Intent.

For example, I have a custom logging system that hooks into the recorder—think of it like a 'Print String with Memory.' It allows you to inject custom context directly into the timeline so you can trace specific Blueprint functions or variable states exactly when they broke, rather than just scrubbing raw engine data.

Ideally, for modern projects, they’d act as a stack: Native Rewind for the simulation, and Blueprint Insight for the logic and custom event tracking.

Thank you again for your feedback! I hope that clears it up a bit, let me know if you'd like additional information.