-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlock.cpp
58 lines (42 loc) · 1.12 KB
/
Block.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Fill out your copyright notice in the Description page of Project Settings.
#include "Block.h"
// Sets default values
ABlock::ABlock()
{
SM_Block = CreateDefaultSubobject<UStaticMeshComponent>(TEXT("BlockMesh"));
Resistance = 20.f;
BreakingStage = 0.f;
MinimumMaterial = 0;
}
void ABlock::Break()
{
++BreakingStage;
float CrackingValue = 1.0f - (BreakingStage / 5.f);
UMaterialInstanceDynamic* MatInstance = SM_Block->CreateDynamicMaterialInstance(0);
if (MatInstance != nullptr) // if we successfully got the instance
{
MatInstance->SetScalarParameterValue(FName("CrackingValue"), CrackingValue);
}
if (BreakingStage == 5.f)
{
OnBroken(true);
}
}
void ABlock::ResetBlock()
{
BreakingStage = 0;
UMaterialInstanceDynamic* MatInstance = SM_Block->CreateDynamicMaterialInstance(0);
if (MatInstance != nullptr)
{
MatInstance->SetScalarParameterValue(FName("CrackingValue"), 1.0f);
}
}
void ABlock::OnBroken(bool HasRequiredPickaxe)
{
Destroy();
}
// Called when the game starts or when spawned
void ABlock::BeginPlay()
{
Super::BeginPlay();
}