Skip to content

Instantly share code, notes, and snippets.

@urahimono
Last active February 14, 2022 19:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save urahimono/7088bf235eca8ce23469989dde7597e6 to your computer and use it in GitHub Desktop.
Save urahimono/7088bf235eca8ce23469989dde7597e6 to your computer and use it in GitHub Desktop.
【Unity】配列にて各要素の表示される名前とIndexを変更するAttribute
//------------------------------------------------------------------------
//
// (C) Copyright 2017 Urahimono Project Inc.
//
//------------------------------------------------------------------------
using UnityEngine;
#if UNITY_EDITOR
using UnityEditor;
#endif // UNITY_EDITOR
public class CustomListLabelAttribute : PropertyAttribute
{
public CustomListLabelAttribute( string i_prefix, int i_startIdx )
{
Prefix = i_prefix;
StartIndex = i_startIdx;
}
public string Prefix
{
get;
private set;
}
public int StartIndex
{
get;
private set;
}
} // class CustomListLabelAttribute
#if UNITY_EDITOR
[CustomPropertyDrawer( typeof( CustomListLabelAttribute ) )]
public class CustomListLabelDrawer : PropertyDrawer
{
public override void OnGUI( Rect i_position, SerializedProperty i_property, GUIContent i_label )
{
int index = GetElementIndex( i_property );
if( index >= 0 )
{
index += attribute.StartIndex;
i_label.text = string.Format( "{0} {1}", attribute.Prefix, index );
}
EditorGUI.PropertyField( i_position, i_property, i_label, true );
}
public override float GetPropertyHeight( SerializedProperty property, GUIContent label )
{
return EditorGUI.GetPropertyHeight( property );
}
private new CustomListLabelAttribute attribute
{
get { return (CustomListLabelAttribute)base.attribute; }
}
private int GetElementIndex( SerializedProperty i_property )
{
string propertyPath = i_property.propertyPath;
var propertys = propertyPath.Split( '.' );
// このデータが配列内の要素ならば、「aaaa.Array.data[...]」の形になるはずだ!
if( propertys.Length < 3 )
{
return -1;
}
// クラスを経由して、パスが長くなった場合でも、このデータが配列内の要素ならば、その後ろから二番目は「Array」になるはずだ!
string arrayProperty = propertys[ propertys.Length-2 ];
if( arrayProperty != "Array" )
{
return -1;
}
// このデータが配列内の要素ならば、data[...]の形になっているはずだ!
var paths = propertyPath.Split( '.' );
var lastPath = paths[ propertys.Length - 1 ];
if( !lastPath.StartsWith( "data[" ) )
{
return -1;
}
// 数字の要素だけ抜き出すんだ!
var regex = new System.Text.RegularExpressions.Regex( @"[^0-9]" );
var countText = regex.Replace( lastPath, "" );
int index = 0;
if( !int.TryParse( countText, out index ) )
{
return -1;
}
return index;
}
} // class CustomListLabelDrawer
#endif // UNITY_EDITOR
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment