Exemple #1
0
 private bool IsLookUnit(uint _id)
 {
     if (ServerDataUtil.ChkBitFlag(ref UserDataAdmin.Instance.m_StructPlayer.flag_unit_check, _id) == true)
     {
         return(true);
     }
     return(false);
 }
Exemple #2
0
    /// <summary>
    /// 条件が合う場合はNewフラグを表示
    /// </summary>
    public void CheckViewFlag()
    {
        if (IsViewFlag == true)
        {
            return;
        }
        if (m_Master == null)
        {
            return;
        }

        if (ServerDataUtil.ChkBitFlag(ref MainMenuParam.m_ResultPrevUnitGetFlag, m_Master.fix_id) == true &&
            !TutorialManager.IsExists)
        {
            return;
        }
        IsViewFlag = true;
    }