Simple Smooth modifier: Can't convert VectorPath to StrictVectorPath

Agent prints “Can’t convert VectorPath to StrictVectorPath” logs when using “Simple Smooth Modifier” component, do we have any solution to fix the error? or just ignore them?

public static ModifierData Convert (Path p, ModifierData input, ModifierData output) {
		//"Input" can not be converted to "output", log error
		if (!CanConvert (input,output)) {
			Debug.LogError ("Can't convert "+input+" to "+output);
			return ModifierData.None;
		}


Thanks,
/edgar

That is because if you are using multiple modifiers, the order of them matters a lot. A FunnelModifier for example can only operate on the path data when it knows that the vectorPath array corresponds to the nodes in the path array (of the path class). Try reordering the modifiers in the Seeker Component -> Modifier Priorities.