more descriptive display name + set default processors.

This commit is contained in:
2019-01-13 17:09:27 -06:00
parent 9df8503f08
commit 7116eb0437
4 changed files with 5 additions and 10 deletions

View File

@@ -4,7 +4,7 @@ using System.IO;
namespace RecrownedAthenaeum.Pipeline.NinePatch
{
[ContentImporter(".9p", DisplayName = "Nine Patch Importer")]
[ContentImporter(".9p", DisplayName = "Nine Patch Importer", DefaultProcessor = "NinePatchProcessor")]
internal class NinePatchImporter : ContentImporter<NinePatchData>
{
public override NinePatchData Import(string filename, ContentImporterContext context)

View File

@@ -4,7 +4,7 @@ using System.Text;
namespace RecrownedAthenaeum.Pipeline.NinePatch
{
[ContentImporter(DisplayName = "Nine Patch Importer")]
[ContentImporter(DisplayName = "Nine Patch Importer - RecrownedAthenaeum")]
class NinePatchProcessor : ContentProcessor<NinePatchData, byte[]>
{
public override byte[] Process(NinePatchData input, ContentProcessorContext context)