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.