Files
ft/Client/Assets/Scripts/GampPlay/ChallengeMatch/Road/ChallengeTruck.cs
2026-06-29 21:18:33 +08:00

24 lines
448 B
C#

//- 卡车
using UnityEngine;
namespace GampPlay.ChallengeMatch.Road
{
public class ChallengeTruck : MonoBehaviour
{
//- 卡车
public Transform truck;
//- 玩家节点
public Transform playerNode;
//-
public Vector3 offset;
// private void Update()
// {
// playerNode.position = transform.position + offset;
// }
}
}