SHADE_Y3/Assets/Scripts/Gameplay/Item/SC_Item.cs

59 lines
1.2 KiB
C#
Raw Normal View History

using SHADE;
using System;
public class Item : Script
{
public enum ItemCategory
{
LIGHT,
MEDIUM,
HEAVY
}
public int Score = 10;
public ItemCategory currCategory;
public bool returnBack { get; set; }
private Transform transform;
private bool playSound = false;
private bool caputurePos = false;
public Vector3 firstPostion;
protected override void awake()
{
transform = GetComponent<Transform>();
returnBack = false;
}
protected override void update()
{
if (returnBack)
{
transform.LocalPosition = firstPostion;
returnBack = false;
}
}
2022-11-21 21:01:44 +08:00
protected override void onCollisionEnter(CollisionInfo info)
{
if (!caputurePos)
{
firstPostion = transform.LocalPosition;
caputurePos = true;
}
if (playSound)
2022-11-21 21:01:44 +08:00
{
if(currCategory == ItemCategory.LIGHT)
2022-11-23 00:44:27 +08:00
Audio.PlaySFXOnce2D("event:/Props/impact_elastic");
2022-11-21 21:01:44 +08:00
else if (currCategory == ItemCategory.MEDIUM || currCategory == ItemCategory.HEAVY)
2022-11-23 00:44:27 +08:00
Audio.PlaySFXOnce2D("event:/Props/impact_hard");
playSound = false;
2022-11-21 21:01:44 +08:00
}
}
protected override void onCollisionExit(CollisionInfo info)
{
playSound = true;
}
}