Home
last modified time | relevance | path

Searched refs:m_ValueSlope (Results 1 – 2 of 2) sorted by relevance

/NW4C-1.2.23/include/nw/anim/res/
Danim_ResAnimCurve.h170 ut::ResU8 m_ValueSlope[3]; // u12 m_Value * scale + offset; fx6.5 m_Slope; member
174 …f32 GetValue() const { return static_cast<f32>( u16(m_ValueSlope[0]) + (u16(m_ValueSlope[1] << … in GetValue()
175 …GetSlope() const { return internal::CastS6_5ToF32((s8(m_ValueSlope[2]) << 4) + (m_ValueSlope[1]… in GetSlope()
/NW4C-1.2.23/sources/libraries/anim/res/
Danim_ResAnimCurve.cpp189 f32 value = f32(pKey->m_ValueSlope[0] + ((pKey->m_ValueSlope[1] & 0x0F) << 8) ); in GetValue()