SHADE_Y3/Assets/Scripts/Gameplay/SC_ScoringZone.cs

21 lines
489 B
C#
Raw Normal View History

using SHADE;
using System;
public class ScoringZone : Script
{
protected override void awake()
{
}
protected override void onTriggerEnter(CollisionInfo info)
{
if (GameManager.Instance && info.GameObject.GetScript<Item>())
{
2022-11-23 00:44:27 +08:00
Audio.PlaySFXOnce2D("event:/Music/stingers/item_scored");
GameManager.Instance.Score += info.GameObject.GetScript<Item>().Score;
GameManager.Instance.totalItemCount -= 1;
info.GameObject.SetActive(false);
}
}
}