#include <BaseQuestWidget.h>
|
| virtual bool | Initialize () override |
| |
| virtual void | NativeConstruct () override |
| |
| class IQuestView * | GetQuestViewer () |
| |
| class IQuestDataInterface * | GetQuestData () |
| |
| class IQuestReporter * | GetQuestReporter () |
| |
| virtual void | NativeTick (const FGeometry &MyGeometry, float InDeltaTime) override |
| |
| void | LogDebugError (const FString &Message) const |
| |
| void | LogDebugError (const FString &Message, const int32 Value) const |
| |
| void | LogDebugError (const FString &Message, const float Value) const |
| |
| void | LogDebugWarning (const FString &Message) const |
| |
| void | LogDebugWarning (const FString &Message, const int32 Value) const |
| |
| void | LogDebugWarning (const FString &Message, const float Value) const |
| |
| void | LogDebugMessage (const FString &Message, const bool bWarning=false, const bool bError=false) const |
| |
| void | LogDebugMessage (const FString &Message, const int32 Value, const bool bWarning=false, const bool bError=false) const |
| |
| void | LogDebugMessage (const FString &Message, const float Value, const bool bWarning=false, const bool bError=false) const |
| |
| void | LogDebugMessage (const FString &Message, const bool bValue, const bool bWarning, const bool bError) const |
| |
| void | LogOnScreenMessage (const int32 Key, const FString &Message, FColor Color=FColor::Green) const |
| |
| void | SetCategoryName (const FLogCategoryBase &Category) |
| |
◆ GetQuestData()
30{
32 SCOPE_CYCLE_COUNTER(STATGROUP_Quests_Widgets);
34 {
37 }
39}
static IQuestDataInterface * GetQuestData(const UObject *WorldContextObject)
Definition QuestBPLib.cpp:118
◆ GetQuestReporter()
17{
19 SCOPE_CYCLE_COUNTER(STATGROUP_Quests_Widgets);
21 {
24
25 }
27}
static IQuestReporter * GetQuestReporter(const UObject *WorldContextObject)
Definition QuestBPLib.cpp:84
◆ GetQuestViewer()
42{
44 SCOPE_CYCLE_COUNTER(STATGROUP_Quests_Widgets);
46 {
49 }
51}
static IQuestView * GetQuestViewer(const AController *Controller)
Definition QuestBPLib.cpp:135
◆ Initialize()
| bool UBaseQuestWidget::Initialize |
( |
| ) |
|
|
overrideprotectedvirtual |
Reimplemented in UQuestLogWidget.
55{
57 SCOPE_CYCLE_COUNTER(STATGROUP_Quests_Widgets);
58 const bool Success = Super::Initialize();
61 return true;
62}
◆ NativeConstruct()
| void UBaseQuestWidget::NativeConstruct |
( |
| ) |
|
|
overrideprotectedvirtual |
Reimplemented in UQuestLogWidget.
65{
67 SCOPE_CYCLE_COUNTER(STATGROUP_Quests_Widgets);
72 Super::NativeConstruct();
73}
◆ NativeTick()
| void UBaseQuestWidget::NativeTick |
( |
const FGeometry & | MyGeometry, |
|
|
float | InDeltaTime ) |
|
overrideprotectedvirtual |
131{
133 SCOPE_CYCLE_COUNTER(STATGROUP_Quests_Widgets);
134 Super::NativeTick(MyGeometry, InDeltaTime);
135
136}
◆ QuestDataInterface
◆ QuestReporter
◆ QuestViewer
| class IQuestView* UBaseQuestWidget::QuestViewer = nullptr |
|
private |
The documentation for this class was generated from the following files:
- T:/Unreal/Unreal Projects/SpaceAdventure52/SpaceAdventure/Plugins/QuestSystem/Source/QuestSystem/Public/Widgets/BaseQuestWidget.h
- T:/Unreal/Unreal Projects/SpaceAdventure52/SpaceAdventure/Plugins/QuestSystem/Source/QuestSystem/Private/Widgets/BaseQuestWidget.cpp