@@ -4,70 +4,45 @@ description: Reference page for UFPTask_BlueprintBase class
4
4
---
5
5
6
6
## Class Info
7
- ### Properties
7
+ - __ FileName:__ ` FPTask_BlueprintBase.h `
8
+ ## Properties
8
9
9
- | Property | Description |
10
- | :--- | :--- |
10
+ No properties in this class
11
+ ## Functions
11
12
12
- ### Functions
13
-
14
- #### ` Setup `
15
-
16
- ``` cpp
17
- virtual void Setup (FFlowContext* InContext) override;
18
- ```
19
-
20
- #### `Enter`
21
-
22
- ```cpp
23
- virtual bool Enter() override;
24
- ```
25
-
26
- #### ` Tick `
27
-
28
- ``` cpp
29
- virtual EFPTaskResult Tick (float DeltaTime) override;
30
- ```
31
-
32
- #### `Exit`
33
-
34
- ```cpp
35
- virtual void Exit(EFPTaskResult TaskResult) override;
36
- ```
37
-
38
- #### ` ReceiveSetup `
39
- Implement setup method.
40
- Called once, during FlowPilot Execution, even after restarts.
13
+ ### ` ReceiveSetup `
14
+ > Implement setup method. \
15
+ > Called once, during FlowPilot Execution, even after restarts.
41
16
``` cpp
42
- UFUNCTION (BlueprintImplementableEvent, Category = "FlowPilot")
43
17
void ReceiveSetup ();
18
+
44
19
```
45
20
46
- #### `ReceiveEnter`
47
- Implement enter Task
21
+ ### ` ReceiveEnter `
22
+ > Implement enter Task
48
23
``` cpp
49
- UFUNCTION(BlueprintImplementableEvent, Category = "FlowPilot")
50
24
bool ReceiveEnter ();
25
+
51
26
```
52
27
53
- #### ` ReceiveTick `
54
- Implement tick Task
28
+ ### ` ReceiveTick `
29
+ > Implement tick Task
55
30
``` cpp
56
- UFUNCTION (BlueprintImplementableEvent, Category = "FlowPilot")
57
31
EFPTaskResult ReceiveTick (float DeltaTime);
32
+
58
33
```
59
34
60
- #### `ReceiveExit`
61
- Implement exit Task
35
+ ### `ReceiveExit`
36
+ > Implement exit Task
62
37
```cpp
63
- UFUNCTION(BlueprintImplementableEvent, Category = "FlowPilot")
64
38
void ReceiveExit(EFPTaskResult TaskResult);
39
+
65
40
```
66
41
67
- #### ` ReceiveGetRuntimeDescription `
68
- Implement Runtime Description for debug purposes
42
+ ### ` ReceiveGetRuntimeDescription `
43
+ > Implement Runtime Description for debug purposes
69
44
``` cpp
70
- UFUNCTION (BlueprintImplementableEvent, Category = "FlowPilot")
71
45
void ReceiveGetRuntimeDescription (TArray<FString >& OutLines) const;
46
+
72
47
```
73
48
0 commit comments