jump(duration,height,velocity,stopAtTarget[,distToTarget[,start_time[, isForRoundMove]]]);
Inheritance: AbstractSkillTriger
Exemple #1
0
        protected override ISkillTriger OnClone()
        {
            JumpTriger triger = new JumpTriger();

            triger.m_Duration     = m_Duration;
            triger.m_Height       = m_Height;
            triger.m_Velocity     = m_Velocity;
            triger.m_StopAtTarget = m_StopAtTarget;
            triger.m_Offset       = m_Offset;

            triger.m_YVelocity = m_YVelocity;
            triger.m_G         = m_G;
            return(triger);
        }
        protected override ISkillTriger OnClone()
        {
            JumpTriger triger = new JumpTriger();
            triger.m_Duration = m_Duration;
            triger.m_Height = m_Height;
            triger.m_Velocity = m_Velocity;
            triger.m_StopAtTarget = m_StopAtTarget;
            triger.m_Offset = m_Offset;

            triger.m_YVelocity = m_YVelocity;
            triger.m_G = m_G;
                        return triger;
        }