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); } } }