Home
last modified time | relevance | path

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

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