TaiZhouChangChu/Assets/Script/LH/TruckBehave.cs

27 lines
427 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class TruckBehave : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
//动画完成后触发
public void PlayComplete()
{
GameMannage.instance.TruckInFactoryComplete();
}
}