Esempio n. 1
0
        public void SendMovePathFindComand(IFacade facadeI, Vector3 vec)
        {
            ComandDataMove cmm = new ComandDataMove();

            cmm.Vector3          = vec;
            cmm.IsMoveByPathFind = true;

            facadeI.ComandGet(cmm);
        }
Esempio n. 2
0
        public void SendMovePathFindComand(IFacade facadeI, Transform parnt)
        {
            ComandDataMove cmm = new ComandDataMove();

            cmm.IsMoveByPathFind = true;

            cmm.TransformParent = parnt;

            facadeI.ComandGet(cmm);
        }