67 lines
1.9 KiB
C#
67 lines
1.9 KiB
C#
// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved.
|
|
|
|
using System;
|
|
using System.IO;
|
|
using FlaxEditor.Content.Thumbnails;
|
|
using FlaxEditor.Windows;
|
|
using FlaxEditor.Windows.Assets;
|
|
using FlaxEngine;
|
|
using FlaxEngine.GUI;
|
|
|
|
namespace FlaxEditor.Content
|
|
{
|
|
/// <summary>
|
|
/// A <see cref="Animation"/> asset proxy object.
|
|
/// </summary>
|
|
/// <seealso cref="FlaxEditor.Content.BinaryAssetProxy" />
|
|
[ContentContextMenu("New/Animation/Animation")]
|
|
public class AnimationProxy : BinaryAssetProxy
|
|
{
|
|
/// <inheritdoc />
|
|
public override string Name => "Animation";
|
|
|
|
/// <inheritdoc />
|
|
public override bool CanReimport(ContentItem item)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override EditorWindow Open(Editor editor, ContentItem item)
|
|
{
|
|
return new AnimationWindow(editor, item as AssetItem);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override Color AccentColor => Color.FromRGB(0xB37200);
|
|
|
|
/// <inheritdoc />
|
|
public override Type AssetType => typeof(Animation);
|
|
|
|
/// <inheritdoc />
|
|
public override bool CanCreate(ContentFolder targetLocation)
|
|
{
|
|
return targetLocation.CanHaveAssets;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void Create(string outputPath, object arg)
|
|
{
|
|
if (Editor.CreateAsset("Animation", outputPath))
|
|
throw new Exception("Failed to create new asset.");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void OnThumbnailDrawBegin(ThumbnailRequest request, ContainerControl guiRoot, GPUContext context)
|
|
{
|
|
guiRoot.AddChild(new Label
|
|
{
|
|
Text = Path.GetFileNameWithoutExtension(request.Asset.Path),
|
|
Offsets = Margin.Zero,
|
|
AnchorPreset = AnchorPresets.StretchAll,
|
|
Wrapping = TextWrapping.WrapWords
|
|
});
|
|
}
|
|
}
|
|
}
|