-
Notifications
You must be signed in to change notification settings - Fork 1
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 #58 from MashdorDev/SplittingMechanic
Merge working splitting mechanic
- Loading branch information
Showing
13 changed files
with
61 additions
and
10 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
Content/Unbread/Art/Characters/GingerbreadMan/GBM_Body.uasset
Git LFS file not shown
3 changes: 3 additions & 0 deletions
3
Content/Unbread/Art/Characters/GingerbreadMan/GBM_Body_PhysicsAsset.uasset
Git LFS file not shown
3 changes: 3 additions & 0 deletions
3
Content/Unbread/Art/Characters/GingerbreadMan/GBM_Head.uasset
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
4 changes: 2 additions & 2 deletions
4
Content/Unbread/Core/DynamicCamera/Release/BP_CameraRegisterLookAtTarget.uasset
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// Fill out your copyright notice in the Description page of Project Settings. | ||
|
||
|
||
#include "CookieInterface.h" | ||
|
||
// Add default functionality here for any ICookieInterface functions that are not pure virtual. |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// Fill out your copyright notice in the Description page of Project Settings. | ||
|
||
#pragma once | ||
|
||
#include "CoreMinimal.h" | ||
#include "UObject/Interface.h" | ||
#include "CookieInterface.generated.h" | ||
|
||
// This class does not need to be modified. | ||
UINTERFACE(MinimalAPI) | ||
class UCookieInterface : public UInterface | ||
{ | ||
GENERATED_BODY() | ||
}; | ||
|
||
/** | ||
* | ||
*/ | ||
class UNBREAD_API ICookieInterface | ||
{ | ||
GENERATED_BODY() | ||
|
||
// Add interface functions to this class. This is the class that will be inherited to implement this interface. | ||
public: | ||
UFUNCTION(BlueprintCallable, BlueprintNativeEvent, Category = "Camera Interface Events") | ||
void SetCanRevert(AActor* CameraActor); | ||
}; |
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