PrefabNode.cs 329 B

1234567891011121314
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using GraphProcessor;
  5. using System.Linq;
  6. [System.Serializable, NodeMenuItem("Custom/Prefab")]
  7. public class PrefabNode : BaseNode
  8. {
  9. [Output(name = "Out"), SerializeField]
  10. public GameObject output;
  11. public override string name => "Prefab";
  12. }