Added Tobii from 4.23 + updated

This commit is contained in:
2023-03-04 04:19:09 +11:00
parent 2d5b9008e5
commit 1cde391516
521 changed files with 11735 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
/******************************************************************************
* Copyright 2017- Tobii Technology AB. All rights reserved.
*
* @author Temaran | Fredrik Lindh | fredrik.lindh@tobii.com | https://github.com/Temaran
******************************************************************************/
#pragma once
#if WITH_EDITOR
#include "CoreMinimal.h"
#include "SWebBrowser.h"
#include "Widgets/SWindow.h"
class STobiiWelcomeWindow : public SWindow
{
public:
SLATE_BEGIN_ARGS(STobiiWelcomeWindow)
{
}
SLATE_END_ARGS()
STobiiWelcomeWindow() {}
/** Widget constructor */
void Construct(const FArguments& Args);
private:
TSharedPtr<SWebBrowser> MainBrowser;
bool bDontShowAgain;
void UpdateFlag();
FReply ShowDesktopSamples();
FReply ShowXRSamples();
FReply AbortTutorial();
};
#endif //WITH_EDITOR