コード例 #1
0
ファイル: Bot_API.cs プロジェクト: kow/Aurora-Sim
        public void botSetPathMap(string bot, string pathMap, int x, int y, int cornerstoneX, int cornerstoneY)
        {
            IBotManager manager = World.RequestModuleInterface <IBotManager> ();

            if (manager != null)
            {
                manager.ReadMap(UUID.Parse(bot), pathMap, x, y, cornerstoneX, cornerstoneY);
            }
        }