public void AddUiManager(AmBoxArea pWagu, int xN, int yN, bool?scrVert, bool reverse, string pName,
                             bool pSwitchLock = false, bool pLimit2Inside = true, bool pEnableScrl = true)
    {
        UITileManager tileMan = new UITileManager(xN, yN, pWagu, muiDiagonalDist, scrVert, pName, this,
                                                  reverse: reverse, pSwitchLock: pSwitchLock, pLimit2Inside: pLimit2Inside, pEnableScrl: pEnableScrl);

        arrMan.Add(tileMan);

        tileMan.EventSetAlienToTouchManager += gObj => {
            string theName = (gObj == null)? " Null " : gObj.name;
            Ag.LogIntenseWord(" >>>>>    UI_Touch_Manager ::  Got the Alien " + theName);
            muiHoveringObj = gObj;
        };
    }
Beispiel #2
0
 public void SetUITileManager(UITileManager uiTileManager) => this.uiTileManager = uiTileManager;