Skip to content
Snippets Groups Projects
Commit c12f825b authored by Addin Munawwar's avatar Addin Munawwar
Browse files

feat: quest

parent bc049b11
Branches
Tags
No related merge requests found
fileFormatVersion: 2
guid: b25d882ba10844fbeab3c48501eee62f
guid: a9bb3b0b730dca946b5b3037c90a21bc
DefaultImporter:
externalObjects: {}
userData:
......
......@@ -27,15 +27,15 @@ public class TimelineManager : MonoBehaviour
return;
}
}
protected virtual void Start() {
for (int i = 0; i < markCount; i++)
{
marks.Add(i * framePerMark);
}
}
protected virtual void Start() {
}
public void InstanlyMoveToNextMark()
{
if (currentMarkIndex + 1 < marks.Count)
......
......@@ -109,7 +109,7 @@ public class MainSceneController : MonoBehaviour
questManager = managers.GetComponent<QuestManager>();
gamePlayUI = GameObject.Find("Gameplay UI");
gamePlayUI.SetActive(false);
// gamePlayUI.SetActive(false);
}
void Update()
{
......
......@@ -84,14 +84,14 @@ public class QuestManager : MonoBehaviour
{
SpawnArea = new SpawnArea { Origin = spawnTransform, Radius = 36},
Mob = Keroco,
MobCount = 7,
MobCount = 10,
SpawnInterval = 5f
},
new SpawnerData
{
SpawnArea = new SpawnArea { Origin = spawnTransform, Radius = 50},
Mob = Thrower,
MobCount = 2,
MobCount = 10,
SpawnInterval = 30f
}
}
......@@ -120,7 +120,7 @@ public class QuestManager : MonoBehaviour
{
SpawnArea = new SpawnArea { Origin = spawnTransform, Radius = 36},
Mob = General,
MobCount = 5,
MobCount = 6,
SpawnInterval = 2f
},
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment