| 12345678910111213141516171819202122232425262728293031 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- using BansheeEngine;
- namespace BansheeEditor
- {
- /** @addtogroup Inspectors
- * @{
- */
- /// <summary>
- /// Renders an inspector for the <see cref="AnimationClip"/> resource.
- /// </summary>
- [CustomInspector(typeof(AnimationClip))]
- internal class AnimationClipInspector : Inspector
- {
- /// <inheritdoc/>
- protected internal override void Initialize()
- {
- // No GUI for physics mesh resource
- }
- /// <inheritdoc/>
- protected internal override InspectableState Refresh()
- {
- return InspectableState.NotModified;
- }
- }
- /** @} */
- }
|