Skip to content
Snippets Groups Projects
Select Git revision
  • d07b6650c36dbea19a15a9e1aab1bff3f5b6004f
  • develop default protected
  • feature/webrtc
  • feature/mesh-based-reprojection
  • feature/linux-fixes
  • feature/dual-layer-reprojection
  • feature/frame-invalidation
  • feature/plot-script
  • bug/jittering
  • feature/indirect-sky
  • feature/depth-peeling-reprojection protected
  • master
12 results

pass_timer.hpp

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;
    };