mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
154 lines
4.1 KiB
C++
154 lines
4.1 KiB
C++
#include "FortAthenaCreativePortal.h"
|
|
#include "Net/UnrealNetwork.h"
|
|
|
|
void AFortAthenaCreativePortal::UpdateThumbnail() {
|
|
}
|
|
|
|
void AFortAthenaCreativePortal::TeleportVehicle(AFortAthenaVehicle* Vehicle) {
|
|
}
|
|
|
|
void AFortAthenaCreativePortal::TeleportPlayerToLinkedVolume(AFortPlayerPawn* PlayerPawn, bool bUseSpawnTags) {
|
|
}
|
|
|
|
void AFortAthenaCreativePortal::TeleportPlayerForPlotLoadComplete(AFortPlayerPawn* PlayerPawn) {
|
|
}
|
|
|
|
void AFortAthenaCreativePortal::TeleportPlayer(AFortPlayerPawn* PlayerPawn, const FRotator& TeleportRotation) {
|
|
}
|
|
|
|
void AFortAthenaCreativePortal::StartedPlotLoadForUser(const FAsyncTaskResult& Result) {
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void AFortAthenaCreativePortal::OnUnloadPlotComplete(const FAsyncTaskResult& Result) {
|
|
}
|
|
|
|
|
|
void AFortAthenaCreativePortal::OnRep_VolumeStatus() {
|
|
}
|
|
|
|
void AFortAthenaCreativePortal::OnRep_PublishedPortal() {
|
|
}
|
|
|
|
void AFortAthenaCreativePortal::OnRep_PortalOpen() {
|
|
}
|
|
|
|
void AFortAthenaCreativePortal::OnRep_PopulationChanged() {
|
|
}
|
|
|
|
void AFortAthenaCreativePortal::OnRep_PlayersReady() {
|
|
}
|
|
|
|
void AFortAthenaCreativePortal::OnRep_OwningPlayer() {
|
|
}
|
|
|
|
void AFortAthenaCreativePortal::OnRep_IslandInfo() {
|
|
}
|
|
|
|
void AFortAthenaCreativePortal::OnPlayerPawnTeleported(AFortPlayerPawn* PlayerPawn, bool bTeleportedToIslandStart) {
|
|
}
|
|
|
|
void AFortAthenaCreativePortal::OnClientLoadedStateChanged() {
|
|
}
|
|
|
|
void AFortAthenaCreativePortal::NotifyTeleportedVehicle_Implementation(AFortAthenaVehicle* Vehicle) {
|
|
}
|
|
|
|
|
|
bool AFortAthenaCreativePortal::IsPortalOpen() const {
|
|
return false;
|
|
}
|
|
|
|
bool AFortAthenaCreativePortal::IsPortalInteractable() const {
|
|
return false;
|
|
}
|
|
|
|
FText AFortAthenaCreativePortal::GetVolumeDisplayName() const {
|
|
return FText::GetEmpty();
|
|
}
|
|
|
|
FString AFortAthenaCreativePortal::GetVideoID() const {
|
|
return TEXT("");
|
|
}
|
|
|
|
int32 AFortAthenaCreativePortal::GetThumbnailWidth() const {
|
|
return 0;
|
|
}
|
|
|
|
int32 AFortAthenaCreativePortal::GetThumbnailHeight() const {
|
|
return 0;
|
|
}
|
|
|
|
FText AFortAthenaCreativePortal::GetTagline() const {
|
|
return FText::GetEmpty();
|
|
}
|
|
|
|
AFortPlayerStateAthena* AFortAthenaCreativePortal::GetPlayerState() {
|
|
return NULL;
|
|
}
|
|
|
|
FString AFortAthenaCreativePortal::GetMnemonic() const {
|
|
return TEXT("");
|
|
}
|
|
|
|
AFortVolume* AFortAthenaCreativePortal::GetLinkedVolume() const {
|
|
return NULL;
|
|
}
|
|
|
|
FString AFortAthenaCreativePortal::GetImageURL() const {
|
|
return TEXT("");
|
|
}
|
|
|
|
FText AFortAthenaCreativePortal::GetCreatorName() const {
|
|
return FText::GetEmpty();
|
|
}
|
|
|
|
void AFortAthenaCreativePortal::FinishedReadingCloudFiles(const FAsyncTaskResult& Result) {
|
|
}
|
|
|
|
|
|
|
|
void AFortAthenaCreativePortal::ClientSaveStateChanged(bool bSaving) {
|
|
}
|
|
|
|
|
|
void AFortAthenaCreativePortal::CheckMinigameOnTeleportComplete(AFortPlayerPawn* PlayerPawn, bool bTeleportedToIslandStart) {
|
|
}
|
|
|
|
void AFortAthenaCreativePortal::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
|
|
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
|
|
|
|
DOREPLIFETIME(AFortAthenaCreativePortal, bReturnToCreativeHub);
|
|
DOREPLIFETIME(AFortAthenaCreativePortal, bInErrorState);
|
|
DOREPLIFETIME(AFortAthenaCreativePortal, bUserInitiatedLoad);
|
|
DOREPLIFETIME(AFortAthenaCreativePortal, IslandInfo);
|
|
DOREPLIFETIME(AFortAthenaCreativePortal, VolumeStatus);
|
|
DOREPLIFETIME(AFortAthenaCreativePortal, CurrentPopulation);
|
|
DOREPLIFETIME(AFortAthenaCreativePortal, OwningPlayer);
|
|
DOREPLIFETIME(AFortAthenaCreativePortal, PlayersReady);
|
|
DOREPLIFETIME(AFortAthenaCreativePortal, bIsPublishedPortal);
|
|
DOREPLIFETIME(AFortAthenaCreativePortal, TeleportLocation);
|
|
DOREPLIFETIME(AFortAthenaCreativePortal, bPortalOpen);
|
|
}
|
|
|
|
AFortAthenaCreativePortal::AFortAthenaCreativePortal() {
|
|
this->PortalIndex = -1;
|
|
this->DestinationActor = NULL;
|
|
this->MaxInstantTeleportDistance = 60000.00f;
|
|
this->bReturnToCreativeHub = false;
|
|
this->LinkedVolume = NULL;
|
|
this->bInErrorState = false;
|
|
this->bUserInitiatedLoad = false;
|
|
this->CurrentPopulation = 0;
|
|
this->bIsPublishedPortal = false;
|
|
this->bTeleportLocationIsIslandStart = false;
|
|
this->bDisallowPortalInteract = false;
|
|
this->bPortalOpen = false;
|
|
this->CachedOwningPlayerState = NULL;
|
|
this->ThumbnailTexture = NULL;
|
|
}
|
|
|