1
0
mirror of https://github.com/Siccity/xNode.git synced 2025-12-20 17:26:02 +08:00
2018-05-12 14:39:49 +02:00

51 lines
1.3 KiB
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using XNode.Examples.MathNodes;
namespace XNode.Examples.RuntimeMathNodes {
public class UGUIVector : UGUIMathBaseNode {
public InputField valX;
public InputField valY;
public InputField valZ;
private Vector vectorNode;
public override void Start() {
base.Start();
vectorNode = node as Vector;
valX.onValueChanged.AddListener(OnChangeValX);
valY.onValueChanged.AddListener(OnChangeValY);
valZ.onValueChanged.AddListener(OnChangeValZ);
UpdateGUI();
}
public override void UpdateGUI() {
NodePort portX = node.GetInputPort("x");
NodePort portY = node.GetInputPort("y");
NodePort portZ = node.GetInputPort("z");
valX.gameObject.SetActive(!portX.IsConnected);
valY.gameObject.SetActive(!portY.IsConnected);
valZ.gameObject.SetActive(!portZ.IsConnected);
Vector vectorNode = node as Vector;
valX.text = vectorNode.x.ToString();
valY.text = vectorNode.y.ToString();
valZ.text = vectorNode.z.ToString();
}
private void OnChangeValX(string val) {
vectorNode.x = float.Parse(valX.text);
}
private void OnChangeValY(string val) {
vectorNode.y = float.Parse(valY.text);
}
private void OnChangeValZ(string val) {
vectorNode.z = float.Parse(valZ.text);
}
}
}