Compare commits

..

No commits in common. "e2187e39474ebd89b4cd1b0059d6ac4d26a7a62b" and "a778d15702e5ed0f983b6dcce82061a472b792fe" have entirely different histories.

9 changed files with 2 additions and 73 deletions

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

Binary file not shown.

View File

@ -1,27 +0,0 @@
// 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

@ -1,26 +0,0 @@
// 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;
};