Files
2026-03-04 10:03:45 +08:00

19 lines
285 B
C#

using UnityEngine;
namespace AQUAS
{
[ExecuteInEditMode]
public class AQUAS_Container : MonoBehaviour
{
private void Start()
{
base.transform.position = new Vector3(0f, 0f, 0f);
}
private void Update()
{
base.transform.position = new Vector3(0f, 0f, 0f);
}
}
}