hkaAnimationControl.inl
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:3k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * 
  3.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  4.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  5.  * Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2009 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.
  6.  * 
  7.  */
  8. // Return the local time for the control
  9. inline hkReal hkaAnimationControl::getLocalTime() const
  10. {
  11. return m_localTime;
  12. }
  13. // Set the local time for the animation
  14. inline void hkaAnimationControl::setLocalTime( hkReal lTime )
  15. {
  16. m_localTime = lTime;
  17. }
  18. inline hkReal hkaAnimationControl::getWeight() const
  19. {
  20. return m_weight;
  21. }
  22. inline const hkaAnimationBinding* hkaAnimationControl::getAnimationBinding() const
  23. {
  24. return m_binding;
  25. }
  26. inline hkUint8 hkaAnimationControl::getTransformTrackWeight(hkUint32 track) const
  27. {
  28. return m_transformTrackWeights[track];
  29. }
  30. inline hkUint8 hkaAnimationControl::getFloatTrackWeight(hkUint32 track) const
  31. {
  32. return m_floatTrackWeights[track];
  33. }
  34. inline void hkaAnimationControl::setTransformTrackWeight(hkUint32 track, hkUint8 weight)
  35. {
  36. m_transformTrackWeights[track] = weight;
  37. }
  38. inline void hkaAnimationControl::setFloatTrackWeight(hkUint32 track, hkUint8 weight)
  39. {
  40. m_floatTrackWeights[track] = weight;
  41. }
  42. // Get the weight values for all tracks (non-const access)
  43. inline const hkArray<hkUint8>& hkaAnimationControl::getTransformTracksWeights() const
  44. {
  45. return m_transformTrackWeights;
  46. }
  47. // Get the weight values for all tracks (non-const access)
  48. inline const hkArray<hkUint8>& hkaAnimationControl::getFloatTracksWeights() const
  49. {
  50. return m_floatTrackWeights;
  51. }
  52. // Get the motion track weight for this control
  53. inline hkReal hkaAnimationControl::getMotionTrackWeight() const
  54. {
  55. return m_motionTrackWeight;
  56. }
  57. // Set the motion track weight for this control
  58. inline void hkaAnimationControl::setMotionTrackWeight(hkReal w)
  59. {
  60. m_motionTrackWeight = w;
  61. }
  62. /*
  63. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  64. * Confidential Information of Havok.  (C) Copyright 1999-2009
  65. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  66. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  67. * rights, and intellectual property rights in the Havok software remain in
  68. * Havok and/or its suppliers.
  69. * Use of this software for evaluation purposes is subject to and indicates
  70. * acceptance of the End User licence Agreement for this product. A copy of
  71. * the license is included with this software and is also available at www.havok.com/tryhavok.
  72. */