19 lines
285 B
C#
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);
|
|
}
|
|
}
|
|
}
|