Compare commits
2 Commits
82a5093509
...
test_obsta
Author | SHA1 | Date | |
---|---|---|---|
e2187e3947 | |||
911ffbaa8d |
@ -1,12 +0,0 @@
|
||||
[/Script/GameplayTags.GameplayTagsSettings]
|
||||
ImportTagsFromConfig=True
|
||||
WarnOnInvalidTags=True
|
||||
ClearInvalidTags=False
|
||||
AllowEditorTagUnloading=True
|
||||
AllowGameTagUnloading=False
|
||||
FastReplication=False
|
||||
InvalidTagCharacters="\"\',"
|
||||
NumBitsForContainerSize=6
|
||||
NetIndexFirstBitSegment=16
|
||||
+GameplayTagList=(Tag="Passenger",DevComment="")
|
||||
|
BIN
Content/Baby.uasset
(Stored with Git LFS)
BIN
Content/Baby.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprints/BP_Ice_Slip.uasset
(Stored with Git LFS)
Normal file
BIN
Content/Blueprints/BP_Ice_Slip.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Blueprints/BP_Rescue_Boat.uasset
(Stored with Git LFS)
BIN
Content/Blueprints/BP_Rescue_Boat.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/Blueprints/BP_Water_drop.uasset
(Stored with Git LFS)
Normal file
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
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
BIN
Content/Blueprints/Slippery.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/Mesh/SM_Cruise_Ship.uasset
(Stored with Git LFS)
BIN
Content/Mesh/SM_Cruise_Ship.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacterJoel.uasset
(Stored with Git LFS)
BIN
Content/ThirdPerson/Blueprints/BP_ThirdPersonCharacterJoel.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/ThirdPerson/Blueprints/WBP_Timer.uasset
(Stored with Git LFS)
BIN
Content/ThirdPerson/Blueprints/WBP_Timer.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/__ExternalActors__/Maps/AustinTestMap/5/3D/Z75B8FUO02492CJNK5HUTC.uasset
(Stored with Git LFS)
BIN
Content/__ExternalActors__/Maps/AustinTestMap/5/3D/Z75B8FUO02492CJNK5HUTC.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/__ExternalActors__/Maps/AustinTestMap/8/B3/Q9KYBVZNCQOZKGXKB0MPXD.uasset
(Stored with Git LFS)
BIN
Content/__ExternalActors__/Maps/AustinTestMap/8/B3/Q9KYBVZNCQOZKGXKB0MPXD.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/__ExternalActors__/Maps/AustinTestMap/9/4E/PNL9YXQ3TBVFK0ESW3SFQY.uasset
(Stored with Git LFS)
BIN
Content/__ExternalActors__/Maps/AustinTestMap/9/4E/PNL9YXQ3TBVFK0ESW3SFQY.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/__ExternalActors__/Maps/AustinTestMap/B/NW/WHFVPNVWATX9I8IKP7BMS4.uasset
(Stored with Git LFS)
BIN
Content/__ExternalActors__/Maps/AustinTestMap/B/NW/WHFVPNVWATX9I8IKP7BMS4.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/33/TKK82D44PKUQ3I6DQX0Y90.uasset
(Stored with Git LFS)
Normal file
BIN
Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/1/33/TKK82D44PKUQ3I6DQX0Y90.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/E/8F/LTNR05I601XM8YRDOU31N6.uasset
(Stored with Git LFS)
Normal file
BIN
Content/__ExternalActors__/ThirdPerson/Maps/ThirdPersonMap/E/8F/LTNR05I601XM8YRDOU31N6.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -7,7 +7,7 @@
|
||||
AjumpingshipGameMode::AjumpingshipGameMode()
|
||||
{
|
||||
// set default pawn class to our Blueprinted character
|
||||
static ConstructorHelpers::FClassFinder<APawn> PlayerPawnBPClass(TEXT("/Game/ThirdPerson/Blueprints/BP_ThirdPersonCharacterJoel"));
|
||||
static ConstructorHelpers::FClassFinder<APawn> PlayerPawnBPClass(TEXT("/Game/ThirdPerson/Blueprints/BP_ThirdPersonCharacter"));
|
||||
if (PlayerPawnBPClass.Class != NULL)
|
||||
{
|
||||
DefaultPawnClass = PlayerPawnBPClass.Class;
|
||||
|
27
Source/jumpingship/jumpingshipObstacle.cpp
Normal file
27
Source/jumpingship/jumpingshipObstacle.cpp
Normal 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);
|
||||
|
||||
}
|
||||
|
26
Source/jumpingship/jumpingshipObstacle.h
Normal file
26
Source/jumpingship/jumpingshipObstacle.h
Normal 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;
|
||||
|
||||
};
|
Reference in New Issue
Block a user