Compare commits

..

2 Commits

Author SHA1 Message Date
ga28299
e2187e3947 test obstacles push 2023-11-27 18:48:48 -05:00
ga28299
911ffbaa8d Drop hold obstacle 2023-11-27 16:32:38 -05:00
9 changed files with 73 additions and 2 deletions

BIN
Content/Blueprints/BP_Ice_Slip.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/Blueprints/BP_Water_drop.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/Blueprints/BP_Wind.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/Blueprints/Slippery.uasset (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,27 @@
// Fill out your copyright notice in the Description page of Project Settings.
#include "jumpingshipObstacle.h"
// Sets default values
AjumpingshipObstacle::AjumpingshipObstacle()
{
// Set this actor to call Tick() every frame. You can turn this off to improve performance if you don't need it.
PrimaryActorTick.bCanEverTick = true;
}
// Called when the game starts or when spawned
void AjumpingshipObstacle::BeginPlay()
{
Super::BeginPlay();
}
// Called every frame
void AjumpingshipObstacle::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
}

View File

@ -0,0 +1,26 @@
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/Actor.h"
#include "jumpingshipObstacle.generated.h"
UCLASS()
class JUMPINGSHIP_API AjumpingshipObstacle : public AActor
{
GENERATED_BODY()
public:
// Sets default values for this actor's properties
AjumpingshipObstacle();
protected:
// Called when the game starts or when spawned
virtual void BeginPlay() override;
public:
// Called every frame
virtual void Tick(float DeltaTime) override;
};