-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathHierarchyChecker.cs
71 lines (50 loc) · 2.04 KB
/
HierarchyChecker.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#region Header
/* ============================================
* 작성자 : Strix
* 작성일 : 2020-02-15 오전 10:32:24
* 개요 :
*
* 참고 코드
* https://forum.unity.com/threads/creating-a-spriteatlas-from-code.511400/
============================================ */
#endregion Header
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using UnityEditor;
using System.Linq;
/// <summary>
///
/// </summary>
public class HierarchyChecker : Editor
{
private const string const_strSpriteAtlasExtensionName = ".spriteatlas";
/* const & readonly declaration */
/* enum & struct declaration */
/* public - Field declaration */
/* protected & private - Field declaration */
// ========================================================================== //
/* public - [Do] Function
* 외부 객체가 호출(For External class call)*/
[MenuItem("GameObject/UI/Custom/" + nameof(DoCheck_ObjectNameConvention))]
public static void DoCheck_ObjectNameConvention(MenuCommand pCommand)
{
IEnumerable<GameObject> arrSelectObject = Selection.objects.Where(p => p is GameObject).Select(p => p as GameObject);
foreach (GameObject pObject in arrSelectObject)
{
Component[] arrComponent = pObject.GetComponentsInChildren<Component>();
IEnumerable<Component> arrFilteredComponent = arrComponent.Where(p => p is Transform == false);
foreach(Component pComponent in arrFilteredComponent)
{
Debug.Log(pComponent.name + pComponent.GetType().FullName, pComponent);
EditorGUIUtility.PingObject(pComponent);
}
}
}
// ========================================================================== //
/* protected - Override & Unity API */
/* protected - [abstract & virtual] */
// ========================================================================== //
#region Private
#endregion Private
}