Example #1
0
    //公会技能--公会技能与有无公会无关
    void getGuildSkill()
    {
        SetLoginProgress(1, false);
        GuildGetSkillFPort fport = FPortManager.Instance.getFPort <GuildGetSkillFPort>();

        fport.access(getGuildBuilding);
    }
Example #2
0
 public void initWindow()
 {
     if (GuildManagerment.Instance.getGuildSkill() == null)
     {
         GuildGetSkillFPort fport = FPortManager.Instance.getFPort("GuildGetSkillFPort") as GuildGetSkillFPort;
         fport.access(openGuildCollege);
     }
     else
     {
         openGuildCollege();
     }
 }
Example #3
0
 public override void OnAwake()
 {
     base.OnAwake();
     GuildManagerment.Instance.clearUpdateMsg();
     if (GuildManagerment.Instance.getGuildSkill() == null)
     {
         GuildGetSkillFPort fport = FPortManager.Instance.getFPort("GuildGetSkillFPort") as GuildGetSkillFPort;
         fport.access(intoCollege);
     }
     else
     {
         intoCollege();
     }
 }