character, widgets, materials, npc
This commit is contained in:
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.
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.
BIN
Content/MI_red.uasset
Normal file
BIN
Content/MI_red.uasset
Normal file
Binary file not shown.
BIN
Content/M_white.uasset
Normal file
BIN
Content/M_white.uasset
Normal file
Binary file not shown.
BIN
Content/Material/MI_green.uasset
Normal file
BIN
Content/Material/MI_green.uasset
Normal file
Binary file not shown.
BIN
Content/Material/MI_red.uasset
Normal file
BIN
Content/Material/MI_red.uasset
Normal file
Binary file not shown.
BIN
Content/Material/M_gold.uasset
Normal file
BIN
Content/Material/M_gold.uasset
Normal file
Binary file not shown.
BIN
Content/Material/M_white.uasset
Normal file
BIN
Content/Material/M_white.uasset
Normal file
Binary file not shown.
BIN
Content/NPC_BP.uasset
Normal file
BIN
Content/NPC_BP.uasset
Normal file
Binary file not shown.
BIN
Content/red.uasset
Normal file
BIN
Content/red.uasset
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Content/white.uasset
Normal file
BIN
Content/white.uasset
Normal file
Binary file not shown.
@ -7,7 +7,10 @@
|
|||||||
{
|
{
|
||||||
"Name": "SevenStars",
|
"Name": "SevenStars",
|
||||||
"Type": "Runtime",
|
"Type": "Runtime",
|
||||||
"LoadingPhase": "Default"
|
"LoadingPhase": "Default",
|
||||||
|
"AdditionalDependencies": [
|
||||||
|
"Engine"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
21
Source/SevenStars/NPC.cpp
Normal file
21
Source/SevenStars/NPC.cpp
Normal 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
Source/SevenStars/NPC.h
Normal file
18
Source/SevenStars/NPC.h
Normal 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;
|
||||||
|
};
|
Reference in New Issue
Block a user