Core heritage
This commit is contained in:
parent
e25d118287
commit
11ca7ecdcb
@ -264,9 +264,4 @@ public class WaveObserver : Singleton<WaveObserver>
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ChooseMonsterCore(List<EnemyType> currentGroup)
|
|
||||||
{
|
|
||||||
// Fetch the group's mosnter core bool attribute
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
13
Assets/Scripts/Opponent/MonsterCoreDrop.cs
Normal file
13
Assets/Scripts/Opponent/MonsterCoreDrop.cs
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
using System.Collections;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
|
public class MonsterCoreDrop : Opponent
|
||||||
|
{
|
||||||
|
private GameObject mosnterCorePrefab;
|
||||||
|
public override void Death()
|
||||||
|
{
|
||||||
|
Instantiate(mosnterCorePrefab, transform.position, Quaternion.identity);
|
||||||
|
base.Death();
|
||||||
|
}
|
||||||
|
}
|
||||||
11
Assets/Scripts/Opponent/MonsterCoreDrop.cs.meta
Normal file
11
Assets/Scripts/Opponent/MonsterCoreDrop.cs.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: f431d5fa196e5ea4da69343642d10d2f
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Loading…
x
Reference in New Issue
Block a user