[ Web Proxy ]
URL:
Viewing: https://docs.unity3d.com/ScriptReference/Search.QueryListBlockAttribute.html [Back]  [Original]

Unity - Scripting API: QueryListBlockAttribute
Version: Unity 6.5 (6000.5)
    • Supported
    • Legacy
    LanguageEnglish
    • C#

    QueryListBlockAttribute

    class in UnityEditor.Search

    Suggest a change

    Success!

    Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

    Close

    Submission failed

    For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

    Close
    Your name Your email Suggestion* Submit suggestion

    Cancel

    Description

    This attribute can be used on a class deriving from QueryListBlock to display in query builder mode a special block that will propose a fixed set of values when clicked.

    The following example shows how to display a custom list block for the shader filter block.

    [QueryListBlock("Decal", "Shader", "shader")]
    class ShaderDecalBlockList : QueryListBlock
    {
        public ShaderDecalBlockList(IQuerySource source, string id, string value, QueryListBlockAttribute attr)
            : base(source, id, value, attr)
        {
        }
    
        public override IEnumerable<SearchProposition> GetPropositions(SearchPropositionFlags flags = SearchPropositionFlags.None)
        {
            var shaderIcon = EditorGUIUtility.Load("Shader Icon") as Texture2D;
            yield return new SearchProposition(category: null, "HDRP Decal", "Decal", icon: shaderIcon);
            yield return new SearchProposition(category: null, "URP Decal", "DecalURP", icon: shaderIcon);
        }
    }
    

    Properties

    Property Description
    categoryCategory.
    idFilter id of the block.
    idsA set of IDs for which the list block will be displayed.
    nameDisplayed name of the block.
    opDefault operator assigned to the filter when the value changes.
    typeThe list block type is used to get the the icon to be displayed instead of the block name.

    Constructors

    Constructor Description
    QueryListBlockAttributeRegister a list block for a given filter.

    Web Proxy Viewer  |  New URL  |  Original Page