BlackboardHost.SetValue
Declaration#
public void SetValue(string id, Object value)Parameters#
| Name | Description |
|---|---|
| id | Name of the field to check |
| value | Value to set |
Description#
Set the value of a field
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{ public void ExampleMethod(BlackboardHost target, string id) { target.SetValue(id, true); }}