2024-04-21 15:56:57 -07:00
|
|
|
// Generated by GasaGen/GasaGen_UGasaAttributeSet.cpp
|
2024-04-13 13:18:57 -07:00
|
|
|
#include "GasaAttributeSet.h"
|
2024-04-21 15:56:57 -07:00
|
|
|
#include "GasaAttributeSet_Inlines.h"
|
2024-04-13 07:19:45 -07:00
|
|
|
|
2024-04-13 13:18:57 -07:00
|
|
|
#include "AbilitySystemComponent.h"
|
|
|
|
#include "Net/UnrealNetwork.h"
|
|
|
|
#include "Networking/GasaNetLibrary.h"
|
|
|
|
|
|
|
|
UGasaAttributeSet::UGasaAttributeSet()
|
|
|
|
{
|
2024-04-21 22:54:33 -07:00
|
|
|
InitHealth( 50.f );
|
2024-04-13 15:35:19 -07:00
|
|
|
InitMaxHealth( 100.f );
|
2024-04-21 22:54:33 -07:00
|
|
|
InitMana( 25.f );
|
2024-04-13 15:35:19 -07:00
|
|
|
InitMaxMana( 50.f );
|
2024-04-13 13:18:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void UGasaAttributeSet::Client_OnRep_Health( FGameplayAttributeData& PrevHealth )
|
|
|
|
{
|
|
|
|
GAMEPLAYATTRIBUTE_REPNOTIFY( UGasaAttributeSet, Health, PrevHealth )
|
|
|
|
}
|
|
|
|
|
|
|
|
void UGasaAttributeSet::Client_OnRep_MaxHealth( FGameplayAttributeData& PrevMaxHealth )
|
|
|
|
{
|
|
|
|
GAMEPLAYATTRIBUTE_REPNOTIFY( UGasaAttributeSet, MaxHealth, PrevMaxHealth )
|
|
|
|
}
|
|
|
|
|
|
|
|
void UGasaAttributeSet::Client_OnRep_Mana( FGameplayAttributeData& PrevMana )
|
|
|
|
{
|
|
|
|
GAMEPLAYATTRIBUTE_REPNOTIFY( UGasaAttributeSet, Mana, PrevMana )
|
|
|
|
}
|
|
|
|
|
|
|
|
void UGasaAttributeSet::Client_OnRep_MaxMana( FGameplayAttributeData& PrevMaxMana )
|
|
|
|
{
|
|
|
|
GAMEPLAYATTRIBUTE_REPNOTIFY( UGasaAttributeSet, MaxMana, PrevMaxMana )
|
|
|
|
}
|
2024-04-21 06:51:51 -07:00
|
|
|
void UGasaAttributeSet::GetLifetimeReplicatedProps( TArray<FLifetimeProperty>& OutLifetimeProps ) const
|
2024-04-13 13:18:57 -07:00
|
|
|
{
|
|
|
|
Super::GetLifetimeReplicatedProps( OutLifetimeProps );
|
2024-04-21 06:51:51 -07:00
|
|
|
|
2024-04-13 13:18:57 -07:00
|
|
|
DOREPLIFETIME_DEFAULT_GAS( UGasaAttributeSet, Health );
|
|
|
|
DOREPLIFETIME_DEFAULT_GAS( UGasaAttributeSet, MaxHealth );
|
|
|
|
DOREPLIFETIME_DEFAULT_GAS( UGasaAttributeSet, Mana );
|
|
|
|
DOREPLIFETIME_DEFAULT_GAS( UGasaAttributeSet, MaxMana );
|
|
|
|
}
|