Version: Unity 6.7 Alpha (6000.7)
LanguageEnglish
  • C#

StateMachine.BuildAvailableVariableTypes

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

protected IEnumerable<Type> BuildAvailableVariableTypes();

Returns

IEnumerable<Type> The types to offer in the blackboard for variable creation, or null to offer none.

Description

Builds the set of variable types offered in the blackboard for variable creation.

Override this method to define the set of variable types available from the blackboard. The default implementation returns an empty set. This controls what the UI offers, not what can be created. Variables of any type can still be created programmatically via StateMachine.CreateVariable regardless of this set.

 protected override IEnumerable<Type> BuildAvailableVariableTypes()
 {
     yield return typeof(float);
     yield return typeof(int);
     yield return typeof(bool);
 }