// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
using System;
using FlaxEngine;
namespace FlaxEditor.Content
{
///
/// Asset item stored in a Json format file.
///
///
public class JsonAssetItem : AssetItem
{
///
/// Initializes a new instance of the class.
///
/// The path.
/// The identifier.
/// Name of the resource type.
public JsonAssetItem(string path, Guid id, string typeName)
: base(path, typeName, ref id)
{
}
///
public override ContentItemSearchFilter SearchFilter => ContentItemSearchFilter.Json;
///
public override SpriteHandle DefaultThumbnail => Editor.Instance.Icons.Document64;
///
protected override bool DrawShadow => false;
}
}