mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 16:28:23 -05:00
15 lines
419 B
C#
15 lines
419 B
C#
|
using System.Collections.Generic;
|
|||
|
using TriInspector;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
public class Collections_ListDrawerSettingsSample : ScriptableObject
|
|||
|
{
|
|||
|
[ListDrawerSettings(Draggable = true,
|
|||
|
HideAddButton = false,
|
|||
|
HideRemoveButton = false,
|
|||
|
AlwaysExpanded = false)]
|
|||
|
public List<Material> list;
|
|||
|
|
|||
|
[ListDrawerSettings(Draggable = false, AlwaysExpanded = true)]
|
|||
|
public Vector3[] vectors;
|
|||
|
}
|