I want to know about BehaviorParameters.

hello,I tried to understand the meaning of BehaviorParameters.VectorActionDescriptions.
(src comment: The list of strings describing what the actions correspond to.)
In the hierarchy,I can’t change the value.
If modified by code:
BehaviorParameters.BrainParameters.VectorActionDescriptions = null; ->train error
BehaviorParameters.BrainParameters.VectorActionDescriptions = new string[n]; ->train error
BehaviorParameters.BrainParameters.VectorActionDescriptions = new string[1]{“”}; ->working
BehaviorParameters.BrainParameters.VectorActionDescriptions = new string[n]{“1”,“2”,…}; ->working

Please tell me the details to use the determined value.

Hello,

VectorActionDescriptions are a deprecated part of the API. Can you maybe share more about what you would like to use them for?

Under the constraints of my existing code, agent components have to be dynamically added to the code.
Please refer to: Academy.Instance.EnvironmentStep() did not work!
If I don’t set a value for the BehaviorParameters.VectorActionDescriptions,the training cannot start.