useimpact(impactid,[starttime[,is_external_impact]])[if(type)];
Inheritance: AbstractSkillTriger
コード例 #1
0
        protected override ISkillTriger OnClone()
        {
            UseImpactTrigger copy = new UseImpactTrigger();

            copy.m_Impact           = m_Impact;
            copy.m_IsExternalImpact = m_IsExternalImpact;
            copy.m_Type             = m_Type;
            return(copy);
        }
コード例 #2
0
 static public int Reset(IntPtr l)
 {
     try {
         GameFramework.Skill.Trigers.UseImpactTrigger self = (GameFramework.Skill.Trigers.UseImpactTrigger)checkSelf(l);
         self.Reset();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
コード例 #3
0
 static public int constructor(IntPtr l)
 {
     try {
         GameFramework.Skill.Trigers.UseImpactTrigger o;
         o = new GameFramework.Skill.Trigers.UseImpactTrigger();
         pushValue(l, true);
         pushValue(l, o);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
コード例 #4
0
 static public int Execute(IntPtr l)
 {
     try {
         GameFramework.Skill.Trigers.UseImpactTrigger self = (GameFramework.Skill.Trigers.UseImpactTrigger)checkSelf(l);
         System.Object a1;
         checkType(l, 2, out a1);
         SkillSystem.SkillInstance a2;
         checkType(l, 3, out a2);
         System.Int64 a3;
         checkType(l, 4, out a3);
         System.Int64 a4;
         checkType(l, 5, out a4);
         var ret = self.Execute(a1, a2, a3, a4);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
コード例 #5
0
 protected override ISkillTriger OnClone()
 {
     UseImpactTrigger copy = new UseImpactTrigger();
     copy.m_Impact = m_Impact;
     copy.m_IsExternalImpact = m_IsExternalImpact;
     copy.m_Type = m_Type;
     return copy;
 }