mirror of
https://github.com/BlackMATov/unity-iso-tools.git
synced 2025-12-15 01:12:05 +07:00
36 lines
911 B
C#
36 lines
911 B
C#
using UnityEngine;
|
|
using UnityEditor;
|
|
using IsoTools.Tiled;
|
|
using IsoTools.Internal;
|
|
|
|
namespace IsoTools.Tiled.Internal {
|
|
[CustomEditor(typeof(TiledMapLayer)), CanEditMultipleObjects]
|
|
public class TiledMapLayerEditor : Editor {
|
|
TiledMapLayer _layer = null;
|
|
|
|
// ------------------------------------------------------------------------
|
|
//
|
|
// Functions
|
|
//
|
|
// ------------------------------------------------------------------------
|
|
|
|
// ------------------------------------------------------------------------
|
|
//
|
|
// Messages
|
|
//
|
|
// ------------------------------------------------------------------------
|
|
|
|
void OnEnable() {
|
|
_layer = target as TiledMapLayer;
|
|
}
|
|
|
|
public override void OnInspectorGUI() {
|
|
DrawDefaultInspector();
|
|
if ( _layer && _layer.Properties != null ) {
|
|
GUILayout.Label(string.Format(
|
|
"Property count: {0}", _layer.Properties.Count));
|
|
}
|
|
}
|
|
}
|
|
}
|