2025-05-08 22:20:32 +01:00
|
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
#include "Components/EditableTextBox.h"
|
|
|
|
#include "MagicFloatInput.generated.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
UCLASS()
|
|
|
|
class MYPROJECT_API UMagicFloatInput : public UEditableTextBox
|
|
|
|
{
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
|
|
|
void HandleOnTextCommitted(const FText& Text, ETextCommit::Type CommitMethod) override;
|
2025-05-09 15:32:49 +01:00
|
|
|
|
|
|
|
UPROPERTY(EditAnywhere)
|
|
|
|
UEditableTextBox * sourceInput;
|
2025-05-08 22:20:32 +01:00
|
|
|
};
|