FPTask_LoadLevel.h
File Info
FileName: FPTask_LoadLevel.h
- Class List:
[
UFPTask_LoadLevel
]
UFPTask_LoadLevel
Parent Classes:
[ UFlowPilotTask
]
Load Level
- Tasks that loads a level, streamed in or not.
Properties
// Level to loadUPROPERTY(EditAnywhere, Category = "FlowPilot")TSoftObjectPtr<UWorld> Level;
// Streams level if trueUPROPERTY(EditAnywhere, Category = "FlowPilot")uint8 bStreamLevel : 1;
// Blocks main thread when loadingUPROPERTY(EditAnywhere, Category = "FlowPilot", meta=(EditCondition="bStreamLevel"))uint8 bBlockOnLoad : 1;
// Makes visible after loading if trueUPROPERTY(EditAnywhere, Category = "FlowPilot", meta=(EditCondition="bStreamLevel"))uint8 bMakeVisibleAfterLoad : 1;
// if true, options are reset.UPROPERTY(EditAnywhere, Category = "FlowPilot", meta=(EditCondition="!bStreamLevel"))uint8 bAbsolute : 1;
// Load level optionsUPROPERTY(EditAnywhere, Category = "FlowPilot")FString OpenOptions;