CBone.generated.cs 1009 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. namespace BansheeEngine
  5. {
  6. /** @addtogroup Animation
  7. * @{
  8. */
  9. /// <summary>
  10. /// Component that maps animation for specific bone also be applied to the SceneObject this component is attached to. The
  11. /// component will attach to the first found parent Animation component.
  12. /// </summary>
  13. [ShowInInspector]
  14. public partial class Bone : Component
  15. {
  16. private Bone(bool __dummy0) { }
  17. protected Bone() { }
  18. /// <summary>Determines the name of the bone the component is referencing.</summary>
  19. [ShowInInspector]
  20. public string Name
  21. {
  22. get { return Internal_getBoneName(mCachedPtr); }
  23. set { Internal_setBoneName(mCachedPtr, value); }
  24. }
  25. [MethodImpl(MethodImplOptions.InternalCall)]
  26. private static extern void Internal_setBoneName(IntPtr thisPtr, string name);
  27. [MethodImpl(MethodImplOptions.InternalCall)]
  28. private static extern string Internal_getBoneName(IntPtr thisPtr);
  29. }
  30. /** @} */
  31. }