//============================================================================================ /** * @brief * *********************************************************************************************/ public void SetStepData(int a_tagId, EFootstepPace a_pace, EFootstepType a_type) { if (a_tagId < 0 || a_tagId > m_footStepData.Count) return; m_footStepData[a_tagId] = new FootStepData(a_pace, a_type); }
//============================================================================================ /** * @brief * *********************************************************************************************/ public void SetStepDataToAll(EFootstepPace a_pace, EFootstepType a_type) { for(int i=0; i < m_footStepData.Count; ++i) { m_footStepData[i] = new FootStepData(a_pace, a_type); } }