AnimationClipInspector.cs 899 B

12345678910111213141516171819202122232425262728293031
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. using BansheeEngine;
  4. namespace BansheeEditor
  5. {
  6. /** @addtogroup Inspectors
  7. * @{
  8. */
  9. /// <summary>
  10. /// Renders an inspector for the <see cref="AnimationClip"/> resource.
  11. /// </summary>
  12. [CustomInspector(typeof(AnimationClip))]
  13. internal class AnimationClipInspector : Inspector
  14. {
  15. /// <inheritdoc/>
  16. protected internal override void Initialize()
  17. {
  18. // No GUI for physics mesh resource
  19. }
  20. /// <inheritdoc/>
  21. protected internal override InspectableState Refresh()
  22. {
  23. return InspectableState.NotModified;
  24. }
  25. }
  26. /** @} */
  27. }