Unreal Engine Blueprints Cheat Sheet 2026
The 30 highest-yield Unreal Engine Blueprints facts, distilled from real exam questions. Print it, save it as a PDF, or study it here β free, no sign-up.
80 questions
90 min time limit
70% to pass
- Which Blueprint node locks rotation on specific axes to prevent a physics body from spinning unintentionally? β Set Locked Axes (via Physics Body or Constraint)
- What does the construction script do when a blueprint is not edited? β Executes
- What can you do with a "Vertical Box" Widget? β Neatly stack many "child" widgets inside of it and on top of one another
- Which Blueprint node performs a single-hit line trace and returns the first blocking hit along a ray? β Line Trace By Channel
- Which Blueprint node retrieves the current linear velocity of a physics-simulated Primitive Component? β Get Linear Velocity
- What is the result of a 'Cast To' node in a Blueprint graph when the object being checked is NOT of the specified class? β The 'Cast Failed' execution pin fires, and the object output pin is null.
- What can you use the output pins for? β Work with the Other Actorβs output
- Which Blueprint node can detect all actors of a given object type within a sphere radius in the world? β Sphere Overlap Actors
- Which Blueprint component is used to create a physics joint between two actors or components? β Physics Constraint Component
- Which of the following can have multiple input AND multiple output execution pins, allowing for complex branching logic within a single node? β A Macro
- Which collision preset allows a projectile to detect overlapping actors without physically blocking them? β OverlapAll
- What software design principle do Blueprint Interfaces support by letting unrelated classes share a callable contract without class inheritance? β Programming to an interface enabling polymorphism without coupling to concrete classes
- Which collision preset is best suited for an invisible volume that should block all actors from passing through? β BlockAll
- What is the primary function of the 'Update' execution pin on a Timeline node in a Blueprint graph? β It executes every frame that the Timeline is actively playing.
- Which Blueprint node enables physics simulation on a Static Mesh Component at runtime? β Set Simulate Physics
- What happens when you call a Blueprint Interface function on an actor that does NOT implement that interface? β The call is silently ignored with no error or crash
- What does right-clicking a variable in the My Blueprint panel and selecting 'Watch This Value' do? β Displays the variable's live value in the Blueprint Debugger during PIE
- To what do you compare the doors in an opened Blueprint? β Level Blueprint sequence
- What does the 'Replication' setting on a Blueprint variable control? β Whether and how the variable is synchronized from server to clients over the network
- What does Continuous Collision Detection (CCD) primarily prevent in Unreal Engine physics? β Fast-moving objects tunneling through thin geometry
- What does marking a Blueprint variable as 'Expose on Spawn' enable? β The variable can be set as a pin directly on the Spawn Actor from Class node
- What happens when you right-click a Blueprint node and select 'Add Breakpoint'? β PIE execution pauses when that node is reached so you can inspect values
- Which Unreal Engine profiling tool provides a hierarchical CPU timing view including Blueprint function call costs? β Unreal Insights
- What tool allows you to create games without looking at code? β Blueprints
- What does the Widget Blueprint Editor's section "3" do? β Switches the Widget Blueprint Editor between Designer and Graph modes.
- Which node checks at runtime whether an actor implements a specific Blueprint Interface before calling its functions? β Does Implement Interface
- What does the 'BlueprintCallable' UFUNCTION specifier do in C++ code? β Exposes the C++ function as a callable node in Blueprint graphs
- Which Blueprint asset type consolidates reusable static utility functions callable from any Blueprint in the project? β Blueprint Function Library
- Which of the following track types can be added to a Timeline specifically to trigger a new, named execution pin on the node at a precise moment in time? β An Event Track
- What does the 'On Component Hit' event provide that 'On Component Begin Overlap' does not? β Hit result data including impact normal and impulse
Turn these facts into recall: