An archive of past version defects.
It has been fixed in the latest version.
If there is a recurrence, please report it to the Bug Report Forum.
Contents
Arbor 3.5.1
An exception occurs when changing a parameter to refer to while using ParameterConditionList
In the place where ParameterConditionList is used, an exception occurs when the type of referenced parameter is changed.
Built-in script using ParameterConditionList
- StateBehaviour
- ParameterTransition
- Decorator
- ParameterCheck
- ParameterConditionalLoop
Temporary action method
- Open Assets/Plugins/Arbor/BuiltInBehaviours/Editor/Common/ParameterConditionListPropertyDrawer.cs in the code editor.
- Change around line 134 to the following code.
OnChangeParameterType(conditionProperty, oldParameterType, parameterType); return; // Added
- Change around line 150 to the following code.
OnChangeParameterType(conditionProperty, oldParameterType, parameterType); conditionProperty.referenceType = null; return; // Added