add new pack: Editor Attributes, complete GoTo cmd

This commit is contained in:
MinhHai
2026-01-09 15:01:29 +07:00
parent b9bf09f31a
commit 219c87f469
462 changed files with 18860 additions and 2 deletions
@@ -0,0 +1,14 @@
using UnityEngine;
using EditorAttributes;
namespace EditorAttributesSamples
{
[HelpURL("https://editorattributesdocs.readthedocs.io/en/latest/Attributes/MiscellaneousAttributes/filepath.html")]
public class FilePathSample : MonoBehaviour
{
[Header("FilePath Attribute:")]
[SerializeField, FilePath] private string filePath;
[SerializeField, FilePath(false)] private string absoluteFilePath;
[SerializeField, FilePath(filters:"cs,unity")] private string filteredFilePath;
}
}