您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
37 行
603 B
37 行
603 B
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using DG.Tweening;
|
|
public class CollectableItem : MonoBehaviour
|
|
{
|
|
|
|
[SerializeField] private ItemSO _currentItem = default;
|
|
[SerializeField] private GameObject _itemGO = default;
|
|
|
|
private void Start()
|
|
{
|
|
AnimateItem();
|
|
}
|
|
|
|
public ItemSO GetItem()
|
|
{
|
|
|
|
return _currentItem;
|
|
|
|
}
|
|
public void SetItem(ItemSO item)
|
|
{
|
|
_currentItem = item;
|
|
|
|
}
|
|
public void AnimateItem()
|
|
{
|
|
|
|
if (_itemGO != null)
|
|
{
|
|
_itemGO.transform.DORotate(Vector3.one * 180, 5, RotateMode.Fast).SetLoops(-1, LoopType.Incremental);
|
|
|
|
}
|
|
}
|
|
|
|
}
|