_TheStrongestSnail/TheStrongestSnail/Assets/Scripts/Battle_Royale/PlayerMovePos.cs

28 lines
553 B
C#
Raw Normal View History

2024-11-12 19:43:17 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerMovePos : MonoBehaviour
{
public static PlayerMovePos instance;
public Transform StartPos;
2024-11-13 02:03:11 +08:00
public Transform CurrentPos;
2024-11-12 19:43:17 +08:00
public int StartIndex;
2024-11-13 02:03:11 +08:00
public bool HadChoise;//<2F>Ƿ<EFBFBD>ѡ<EFBFBD>񷿼<EFBFBD>
public Transform Parent;
public bool IsReturn;
2024-11-12 19:43:17 +08:00
// Start is called before the first frame update
void Start()
{
instance = this;
}
// Update is called once per frame
void Update()
{
}
}