mirror of
https://github.com/Siccity/xNode.git
synced 2026-03-26 22:49:02 +08:00
!O(Node Editor) Adjust the drawing order
This commit is contained in:
parent
e77fcc580f
commit
3761aa1361
@ -29,9 +29,9 @@ namespace XNodeEditor {
|
|||||||
DrawConnections();
|
DrawConnections();
|
||||||
DrawNodes();
|
DrawNodes();
|
||||||
DrawSelectionBox();
|
DrawSelectionBox();
|
||||||
DrawGroupName();
|
|
||||||
DrawTooltip();
|
|
||||||
graphEditor.OnGUI();
|
graphEditor.OnGUI();
|
||||||
|
DrawTooltip();
|
||||||
|
DrawGroupName();
|
||||||
|
|
||||||
// Run and reset onLateGUI
|
// Run and reset onLateGUI
|
||||||
if (onLateGUI != null) {
|
if (onLateGUI != null) {
|
||||||
@ -50,7 +50,7 @@ namespace XNodeEditor {
|
|||||||
EditorStyles.label.fontSize = 48;
|
EditorStyles.label.fontSize = 48;
|
||||||
Rect size = GUILayoutUtility.GetRect(guiContent, EditorStyles.label);
|
Rect size = GUILayoutUtility.GetRect(guiContent, EditorStyles.label);
|
||||||
EditorStyles.label.normal.textColor = new Color(175 / 255f, 185 / 255f, 185 / 255f);
|
EditorStyles.label.normal.textColor = new Color(175 / 255f, 185 / 255f, 185 / 255f);
|
||||||
EditorGUI.LabelField(new Rect(new Vector2(5, 5), size.size), guiContent);
|
EditorGUI.LabelField(new Rect(new Vector2(5, 15), size.size), guiContent);
|
||||||
EditorStyles.label.fontSize = fontSize;
|
EditorStyles.label.fontSize = fontSize;
|
||||||
EditorStyles.label.normal.textColor = col;
|
EditorStyles.label.normal.textColor = col;
|
||||||
}
|
}
|
||||||
@ -549,8 +549,8 @@ namespace XNodeEditor {
|
|||||||
if (e.type != EventType.Layout && currentActivity == NodeActivity.DragGrid) Selection.objects = preSelection.ToArray();
|
if (e.type != EventType.Layout && currentActivity == NodeActivity.DragGrid) Selection.objects = preSelection.ToArray();
|
||||||
EndZoomed(position, zoom, topPadding);
|
EndZoomed(position, zoom, topPadding);
|
||||||
|
|
||||||
//If a change in is detected in the selected node, call OnValidate method.
|
//If a change in is detected in the selected node, call OnValidate method.
|
||||||
//This is done through reflection because OnValidate is only relevant in editor,
|
//This is done through reflection because OnValidate is only relevant in editor,
|
||||||
//and thus, the code should not be included in build.
|
//and thus, the code should not be included in build.
|
||||||
if (onValidate != null && EditorGUI.EndChangeCheck()) onValidate.Invoke(Selection.activeObject, null);
|
if (onValidate != null && EditorGUI.EndChangeCheck()) onValidate.Invoke(Selection.activeObject, null);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user