BEGONE stupid fuckin warnings
This commit is contained in:
parent
020d29a6fe
commit
fa5cba5ded
@ -5,10 +5,7 @@ using UnityEngine.UIElements;
|
|||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using ImageProcessingGraph.Editor.Nodes.Types.Image.Variable_Node;
|
using ImageProcessingGraph.Editor.Nodes.Types.Image.Variable_Node;
|
||||||
using UnityEditor;
|
|
||||||
using UnityEditor.UIElements;
|
using UnityEditor.UIElements;
|
||||||
using UnityEngine;
|
|
||||||
using UnityEngine.UIElements;
|
|
||||||
|
|
||||||
public class BatchingWindow : EditorWindow
|
public class BatchingWindow : EditorWindow
|
||||||
{
|
{
|
||||||
|
@ -58,21 +58,19 @@ namespace ImageProcessingGraph.Editor
|
|||||||
|
|
||||||
runOrder = GetExecutionOrder(this.nodes, this.connections);
|
runOrder = GetExecutionOrder(this.nodes, this.connections);
|
||||||
|
|
||||||
bool failed = false;
|
|
||||||
|
|
||||||
foreach (var VARIABLE in runOrder)
|
foreach (var VARIABLE in runOrder)
|
||||||
{
|
{
|
||||||
if (!VARIABLE.RunNode())
|
if (!VARIABLE.RunNode())
|
||||||
{
|
{
|
||||||
failed = true;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach (var VARIABLE in runOrder)
|
foreach (var VARIABLE in runOrder)
|
||||||
{
|
{
|
||||||
if(!VARIABLE.RunCleanUp())
|
VARIABLE.RunCleanUp();
|
||||||
failed = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
stopwatch.Stop();
|
stopwatch.Stop();
|
||||||
|
@ -5,7 +5,7 @@ using UnityEngine.UIElements;
|
|||||||
public class ImageProcessingGraphDocumentationWindow : EditorWindow
|
public class ImageProcessingGraphDocumentationWindow : EditorWindow
|
||||||
{
|
{
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
private VisualTreeAsset m_VisualTreeAsset = default;
|
// private VisualTreeAsset m_VisualTreeAsset = default;
|
||||||
|
|
||||||
[MenuItem("Window/UI Toolkit/ImageProcessingGraphDocumentationWindow")]
|
[MenuItem("Window/UI Toolkit/ImageProcessingGraphDocumentationWindow")]
|
||||||
public static void ShowExample()
|
public static void ShowExample()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user