Fixed bug in interpolation parameter

This commit is contained in:
r.kuznetsov 2018-07-02 10:10:48 +03:00 committed by Daria Volvenkova
parent 0b94be8836
commit ca5b508a7b

View file

@ -243,7 +243,7 @@ void UserMarkRenderGroup::UpdateAnimation()
auto const t = static_cast<float>(m_animation->GetOpacity());
interplationT = m_mapping.GetValue(t);
}
m_uniforms.SetFloatValue("u_interpolationT", interplationT);
m_uniforms.SetFloatValue("u_interpolation", interplationT);
}
bool UserMarkRenderGroup::IsUserPoint() const