forked from kookmin-sw/cap-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #242 from kookmin-sw/dev
CSS-359 [DevOps] 빌드_0.2.3
- Loading branch information
Showing
25 changed files
with
294 additions
and
63 deletions.
There are no files selected for viewing
Binary file modified
BIN
+1.02 KB
(100%)
capstone_2024_20/Content/GameObjects/Cannon_level2/caanon2_level2.uasset
Binary file not shown.
Binary file modified
BIN
+14.9 KB
(100%)
capstone_2024_20/Content/GameObjects/Charactor/Level1/ABP_Level1.uasset
Binary file not shown.
Binary file modified
BIN
+14 KB
(100%)
capstone_2024_20/Content/GameObjects/Charactor/Level2/ABP_Level2.uasset
Binary file not shown.
Binary file modified
BIN
+14.9 KB
(100%)
capstone_2024_20/Content/GameObjects/Charactor/Level3/ABP_Level3.uasset
Binary file not shown.
Binary file modified
BIN
-6.07 KB
(97%)
capstone_2024_20/Content/GameObjects/FlatShip/FlatShip_Ship3.uasset
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-6.4 KB
(91%)
capstone_2024_20/Content/WidgetBlueprints/IngameWidget.uasset
Binary file not shown.
Binary file modified
BIN
+4.21 KB
(110%)
capstone_2024_20/Content/WidgetBlueprints/StageClearPopUpWidget.uasset
Binary file not shown.
Binary file modified
BIN
+14.8 KB
(130%)
capstone_2024_20/Content/WidgetBlueprints/StageFailPopUpWidget.uasset
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 9 additions & 10 deletions
19
capstone_2024_20/Source/capstone_2024_20/Pirate/PirateAnimInstance.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
#include "PirateAnimInstance.h" | ||
#include "Net/UnrealNetwork.h" | ||
|
||
void UPirateAnimInstance::OnAttackEnd() | ||
void UPirateAnimInstance::OnAttackEnd() const | ||
{ | ||
bIsAttacking = false; | ||
if (OnPirateAttackEndDelegate.IsBound()) | ||
{ | ||
OnPirateAttackEndDelegate.Execute(); | ||
} | ||
} | ||
|
||
// ! 사이드 이펙트를 막기 위함 | ||
// ReSharper disable once CppUE4BlueprintCallableFunctionMayBeConst | ||
void UPirateAnimInstance::OnGiveDamage() | ||
{ | ||
OnPirateGiveDamageDelegate.Execute(); | ||
} | ||
|
||
void UPirateAnimInstance::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const | ||
{ | ||
Super::GetLifetimeReplicatedProps(OutLifetimeProps); | ||
DOREPLIFETIME(UPirateAnimInstance, bIsAttacking); | ||
if (OnPirateGiveDamageDelegate.IsBound()) | ||
{ | ||
OnPirateGiveDamageDelegate.Execute(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.