Knowledge base
Knowledge base
Knowledge base
Free, anonymous browsing of Unreal Engine Blueprint examples, node references, and best practices. The same content the WoalzCraft plugin uses to generate Blueprints.
31 results for open
Variables: StartRotation (Rotator), EndRotation (Rotator), bIsOpen (bool). Add Timeline node with a float track 'Alpha' (curve from 0.0 to 1.0, duration 1.0s). Overlap trigger → Branch(bIsOpen) → False: Timeline.Play → Update: RLerp(A=StartRotation,B=EndRotation,Alpha=Alpha) → SetActorRotation → Finished: SetVariable(bIsOpen=true). True: Timeline.Reverse → Update: same RLerp → Finished: SetVariable(bIsOpen=false). Key Timeline pins: Play exec input opens forward. Reverse plays backward. Update fires every frame. Finished fires when complete. Alpha track outputs 'Alpha' float.
A scene containing actors, lighting, geometry. Open a level via Open Level. Sublevels stream in/out.
Macro. Enter only passes through when gate is open.
GateUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoPattern: Door actor with BoxTrigger, DoorMesh, Timeline(Alpha 0→1 over 1s). BeginOverlap → PlayFromStart(Timeline). EndOverlap → Reverse(Timeline). Timeline Update: Lerp(ClosedRotation, OpenRotation, Alpha) → SetRelativeRotation(DoorMesh). For sliding: Lerp locations instead of rotations.
Pattern: custom trigger or UI button → [save player data to SaveSlot] → OpenLevel(LevelName='Level_02', bAbsolute=true, Options=''). For loading screen: SetGlobalTimeDilation(0.001) briefly while level loads (freeze world), or use AsyncLoadLevel with progress callback. Key: OpenLevel is in GameplayStatics. 'LevelName' is the map asset name (not full path). bAbsolute=true discards current level completely. Options string can pass params like '?GameMode=BP_GM'.
string
bAbsolute=true reloads from scratch. LevelName is the map asset name without path.
OpenLevelUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoGateUE 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo agoUGameplayStatics::OpenLevel. Use OpenLevelBySoftObjectPtr for asset references.
Open LevelUE 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7updated 2mo ago