character, widgets, materials, npc

This commit is contained in:
keb
2018-09-02 13:27:06 +02:00
parent a1890c58a8
commit 28f959d32f
46 changed files with 43 additions and 1 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+4 -1
View File
@@ -7,7 +7,10 @@
{
"Name": "SevenStars",
"Type": "Runtime",
"LoadingPhase": "Default"
"LoadingPhase": "Default",
"AdditionalDependencies": [
"Engine"
]
}
]
}
+21
View File
@@ -0,0 +1,21 @@
// Fill out your copyright notice in the Description page of Project Settings.
#include "NPC.h"
ANPC::ANPC()
{
PrimaryActorTick.bCanEverTick = true;
}
void ANPC::BeginPlay()
{
Super::BeginPlay();
}
void ANPC::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
}
+18
View File
@@ -0,0 +1,18 @@
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/Actor.h"
#include "NPC.generated.h"
UCLASS()
class SEVENSTARS_API ANPC : public AActor
{
GENERATED_BODY()
public:
ANPC();
virtual void BeginPlay() override;
virtual void Tick(float DeltaTime) override;
};