using UnityEngine;

    public class CubeB : MonoBehaviour
    {
         //【変更】CubeAで読み取られる変数
        public Vector3 attachPos = new Vector3( 1.0f, 0f, 0f);  
    
        // Start is called before the first frame update
        void Start()
        {
            
        }
    
        // Update is called once per frame
        void Update()
        {
            
        }
    }