Improved ShopAOE logic and made blueprint prototype

This commit is contained in:
7heIVIaze
2025-06-02 22:06:16 +09:00
parent 051c65fde0
commit 1096753f5f
7 changed files with 33 additions and 7 deletions

View File

@ -1,8 +1,20 @@
// Fill out your copyright notice in the Description page of Project Settings.
#include "HYShopNPCActor.h"
#include "Blueprint/UserWidget.h"
void AHYShopNPCActor::Interact_Implementation(APlayerController* Controller)
{
Super::Interact_Implementation(Controller);
//if (ShopWidget)
//{
// ShopWidget->RemoveFromParent();
// ShopWidget = nullptr;
//}
//else
//{
// ShopWidget = CreateWidget<UUserWidget>(Controller, ShopWidgetClass);
// ShopWidget->AddToViewport();
//}
}