FieldChangeCallBack Arrays

so with synced values I know that I can use fieldchangecallback in udon sharp.
But how should I do this with possible synced arrays?

Like how for example I would call FieldChangeCallBack for an udon synced bool array, because as far as I know, changing it’s individual values wont trigger it?

FieldChangeCallback indicates that the variable itself has changed. It does not trigger when the values inside of an array have changed. You should use OnDeserialization instead, which is the callback you get when you have received synced data.