Skip to content
Snippets Groups Projects
Commit 88e56f22 authored by Timon Römer's avatar Timon Römer
Browse files

Improves readability

parent f01f6490
No related branches found
No related tags found
1 merge request!87Merge IntenSelect into dev5.3
File added
...@@ -24,7 +24,7 @@ public: ...@@ -24,7 +24,7 @@ public:
float CurrentScore = 0; float CurrentScore = 0;
UPROPERTY(EditAnywhere) UPROPERTY(EditAnywhere)
bool IsSelectable = true; bool bIsSelectable = true;
UPROPERTY(EditAnywhere) UPROPERTY(EditAnywhere)
float Stickiness = 10; float Stickiness = 10;
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
DECLARE_DYNAMIC_MULTICAST_DELEGATE(FOnNewComponent); DECLARE_DYNAMIC_MULTICAST_DELEGATE(FOnNewComponent);
UCLASS(ClassGroup = (Custom), meta = (BlueprintSpawnableComponent)) UCLASS(ClassGroup = (Custom), meta = (BlueprintSpawnableComponent), Blueprintable)
class RWTHVRTOOLKIT_API UIntenSelectComponent : public UWidgetInteractionComponent class RWTHVRTOOLKIT_API UIntenSelectComponent : public UWidgetInteractionComponent
{ {
GENERATED_BODY() GENERATED_BODY()
...@@ -170,7 +170,6 @@ private: ...@@ -170,7 +170,6 @@ private:
* \brief Initializes the material parameter collection used for visualization. * \brief Initializes the material parameter collection used for visualization.
*/ */
void InitMaterialParamCollection(); void InitMaterialParamCollection();
#pragma endregion #pragma endregion
#pragma region /** SCORING */ #pragma region /** SCORING */
...@@ -346,12 +345,6 @@ protected: ...@@ -346,12 +345,6 @@ protected:
*/ */
virtual void BeginPlay() override; 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, virtual void TickComponent(float DeltaTime, ELevelTick TickType,
FActorComponentTickFunction* ThisTickFunction) override; FActorComponentTickFunction* ThisTickFunction) override;
}; };
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment