From 19d36fdf00bb93f1c3f2f6f86d5022bf2e32ecce Mon Sep 17 00:00:00 2001 From: Jb win Date: Fri, 2 May 2025 03:29:42 +0700 Subject: [PATCH] MISC - Rename method --- Source/LuckyWorldV2/Private/Episode/EpisodeSubSystem.cpp | 2 +- Source/LuckyWorldV2/Public/Episode/EpisodeSubSystem.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/LuckyWorldV2/Private/Episode/EpisodeSubSystem.cpp b/Source/LuckyWorldV2/Private/Episode/EpisodeSubSystem.cpp index 8fe36473..0bef06f0 100644 --- a/Source/LuckyWorldV2/Private/Episode/EpisodeSubSystem.cpp +++ b/Source/LuckyWorldV2/Private/Episode/EpisodeSubSystem.cpp @@ -29,7 +29,7 @@ void UEpisodeSubSystem::Tick(float DeltaTime) // How to reset the episode? } -void UEpisodeSubSystem::StartNewEpisode() +void UEpisodeSubSystem::StartNewEpisodesSeries(int32 EpisodesCount) { // Noah // Configure the DataTransfer -> Use CurrentRobot->Cameras diff --git a/Source/LuckyWorldV2/Public/Episode/EpisodeSubSystem.h b/Source/LuckyWorldV2/Public/Episode/EpisodeSubSystem.h index 15f5ec7f..d19cc54b 100644 --- a/Source/LuckyWorldV2/Public/Episode/EpisodeSubSystem.h +++ b/Source/LuckyWorldV2/Public/Episode/EpisodeSubSystem.h @@ -25,7 +25,7 @@ public: /** * Called by the UI when pressing the "Capture" button */ - void StartNewEpisode(); + void StartNewEpisodesSeries(int32 EpisodesCount); private: bool bIsCapturing = false;