You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
419 B
17 lines
419 B
using System;
|
|
using System.Collections.Generic;
|
|
using Samples;
|
|
using TNodeCore.Runtime.Attributes;
|
|
using TNodeCore.Runtime.Models;
|
|
using UnityEngine;
|
|
|
|
namespace TNode.Samples{
|
|
[GraphUsage(typeof(HelloGraph))]
|
|
public class HelloBlackboard:BlackboardData{
|
|
public string HelloString;
|
|
public GameObject HelloGameObject;
|
|
public List<Vector3> V3S;
|
|
public List<Vector2> V2S;
|
|
|
|
}
|
|
} |