Skip to content
Snippets Groups Projects
Select Git revision
  • e622aee710f44881ecd9736ba973271bd430820b
  • master default protected
  • 4.22
  • develop protected
  • 4.22.1 protected
5 results

CAVEOverlay.uplugin

Blame
  • DoorOverlayData.h 675 B
    // Fill out your copyright notice in the Description page of Project Settings.
    
    #pragma once
    
    #include "CoreMinimal.h"
    #include "Blueprint/UserWidget.h"
    #include "TextBlock.h"
    #include "Border.h"
    #include "DoorOverlayData.generated.h"
    
    /**
     * 
     */
    UCLASS()
    class CAVEOVERLAY_API UDoorOverlayData : public UUserWidget
    {
    	GENERATED_BODY()
    	
    public:
    	//These declarations are magically bound to the UMG blueprints elements,
    	//if they are named the same
    	UPROPERTY(BlueprintReadWrite, meta = (BindWidget))
    	UTextBlock* CornerText;
    
    	UPROPERTY(BlueprintReadWrite, meta = (BindWidget))
    	UBorder* BlackBox;
    
    	UPROPERTY(BlueprintReadWrite, meta = (BindWidget))
    	UTextBlock* FPS;
    };