CangJie/Assets/Scripts//FireStick.cs
lspdC 44c4946a71 3.20
整理了树木交互,写了个具体互动物品的基类。
创建了火类,实现火焰交互示意(拿上木棍才能成功交互)。
2022-03-20 23:24:29 +08:00

19 lines
316 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class FireStick : Item
{
// Start is called before the first frame update
override protected void Start()
{
base.Start();
}
// Update is called once per frame
void Update()
{
}
}