Update function in subclassed UI widgets

Hi,

I have a little doubt about the Update method when subclassing UI widgets like ScrollRect.

First of all, I can not override cuch method because it is not marked as overridable (If I recall correctly it is bound to the Update loop at runtime through reflection). The weird thing is that I have written a sublcass of the ScrollRect with an Update method and the scrolling, etc… of the ScrollRect is still working. Where is this behaviour commign from? Shouldn’t unity have bound the update method of the child class? More, my update is working too beside the scrollrect ussual behaviour.

If anyone could explain why this happens it would be really nice.

Cheers.

Ok, my fault. ScrollRect is using LateUpdate instead of Update.

Cheers.