예제 #1
0
 public virtual void SetData(GuideStepType stepType, GuideStepCompleteType completeType, float completeWaitSecond, string describe)
 {
     this.stepType           = stepType;
     this.completeType       = completeType;
     this.completeWaitSecond = completeWaitSecond;
     this.describe           = describe;
 }
예제 #2
0
 public GuideStepData_LoackGuide(int loackLevel, GuideStepType stepType, GuideStepCompleteType completeType, float completeWaitSecond, string describe)
 {
     this.loackLevel = loackLevel;
     SetData(stepType, completeType, completeWaitSecond, describe);
 }
예제 #3
0
 public static string GetName(GuideStepCompleteType type)
 {
     return(EnumUtil.GetName <GuideStepCompleteType> (type));
 }
예제 #4
0
 public static int GetId(GuideStepCompleteType type)
 {
     return((int)type);
 }
예제 #5
0
 public GuideStepData_Panel(GuidePanelID panelId, GuideStepType stepType, GuideStepCompleteType completeType, float completeWaitSecond, string describe)
 {
     this.panelId = panelId;
     SetData(stepType, completeType, completeWaitSecond, describe);
 }
 public GuideStepData_TeacherSay(string content, GuideStepCompleteType completeType, float completeWaitSecond)
 {
     this.content = content;
     SetData(GuideStepType.War_SetTeacherSay, completeType, completeWaitSecond, "美女说话");
 }
예제 #7
0
        public GuideStepData_ProduceSkill(GuideStepType type, GuideStepCompleteType completeType, int skillId, string describe)
        {
            this.skillId = skillId;

            SetData(type, completeType, describe);
        }
예제 #8
0
 public virtual GuideStepData SetCompleteType(GuideStepCompleteType completeType, float completeWaitSecond)
 {
     this.completeType       = completeType;
     this.completeWaitSecond = completeWaitSecond;
     return(this);
 }
예제 #9
0
 public virtual GuideStepData SetCompleteType(GuideStepCompleteType completeType)
 {
     this.completeType = completeType;
     return(this);
 }
예제 #10
0
 public GuideStepData(GuideStepType stepType, GuideStepCompleteType completeType, float completeWaitSecond, string describe)
 {
     SetData(stepType, completeType, completeWaitSecond, describe);
 }
예제 #11
0
 public GuideStepData(GuideStepType stepType, GuideStepCompleteType completeType, string describe)
 {
     SetData(stepType, completeType, 0, describe);
 }