Compare commits

...

3 Commits

Author SHA1 Message Date
martinluckyrobots
1ee9f9f209 Merge branch 'main' of https://luckyrobots.com/luckyrobots/LuckyRobotsUnreal into martin2 2025-04-02 12:02:16 +08:00
martinluckyrobots
7b9b0b6057 Optimize CaptureSetting, GoalTask, etc. 2025-04-02 11:28:05 +08:00
9c168f9842 Merge pull request 'martin' (#8) from martin into main
Reviewed-on: #8
2025-04-01 04:09:11 +00:00
52 changed files with 26 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,4 @@
// Fill out your copyright notice in the Description page of Project Settings.
#include "SG_CaptureSetting.h"

View File

@ -0,0 +1,22 @@
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/SaveGame.h"
#include "SharedDef.h"
#include "SG_CaptureSetting.generated.h"
/**
*
*/
UCLASS()
class LUCKYROBOTS_API USG_CaptureSetting : public USaveGame
{
GENERATED_BODY()
public:
UPROPERTY(EditAnywhere, BlueprintReadWrite)
FCaptureSettingsData CaptureSetting;
};