diff --git a/Content/IntenSelect/IntenSelectComponent.uasset b/Content/IntenSelect/IntenSelectComponent.uasset new file mode 100644 index 0000000000000000000000000000000000000000..bcbca98fc2ae30365a94ebddefbcd2c0b4019034 Binary files /dev/null and b/Content/IntenSelect/IntenSelectComponent.uasset differ diff --git a/Source/RWTHVRToolkit/Public/Interaction/Interactables/IntenSelect/IntenSelectableScoring.h b/Source/RWTHVRToolkit/Public/Interaction/Interactables/IntenSelect/IntenSelectableScoring.h index 445c8a4f24bea1a83d9c48e0b48263cc1dd32678..df12d548abde9108fdffa4b8485a83b3c1e97259 100644 --- a/Source/RWTHVRToolkit/Public/Interaction/Interactables/IntenSelect/IntenSelectableScoring.h +++ b/Source/RWTHVRToolkit/Public/Interaction/Interactables/IntenSelect/IntenSelectableScoring.h @@ -24,7 +24,7 @@ public: float CurrentScore = 0; UPROPERTY(EditAnywhere) - bool IsSelectable = true; + bool bIsSelectable = true; UPROPERTY(EditAnywhere) float Stickiness = 10; diff --git a/Source/RWTHVRToolkit/Public/Pawn/IntenSelectComponent.h b/Source/RWTHVRToolkit/Public/Pawn/IntenSelectComponent.h index c484fbb3267b166b1bc3fa64abce05660a27eb5f..3add1cac45596721e2281496af69586b90040cd7 100644 --- a/Source/RWTHVRToolkit/Public/Pawn/IntenSelectComponent.h +++ b/Source/RWTHVRToolkit/Public/Pawn/IntenSelectComponent.h @@ -12,7 +12,7 @@ DECLARE_DYNAMIC_MULTICAST_DELEGATE(FOnNewComponent); -UCLASS(ClassGroup = (Custom), meta = (BlueprintSpawnableComponent)) +UCLASS(ClassGroup = (Custom), meta = (BlueprintSpawnableComponent), Blueprintable) class RWTHVRTOOLKIT_API UIntenSelectComponent : public UWidgetInteractionComponent { GENERATED_BODY() @@ -170,7 +170,6 @@ private: * \brief Initializes the material parameter collection used for visualization. */ void InitMaterialParamCollection(); - #pragma endregion #pragma region /** SCORING */ @@ -346,12 +345,6 @@ protected: */ virtual void BeginPlay() override; - /** - * \brief Called every frame. - * \param DeltaTime The time since the last frame. - * \param TickType The type of tick. - * \param ThisTickFunction The tick function for this component. - */ virtual void TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override; };