BlackboardHost.GetValue
Declaration#
public T GetValue(string id)Parameters#
| Name | Description |
|---|---|
| id | Name of the field to check |
Description#
Get the value of a field
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{ public void ExampleMethod(BlackboardHost target, string id) { bool result = target.GetValue<bool>(id); }}