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
386 B
17 lines
386 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<float> Value;
|
|
|
|
|
|
}
|
|
} |