Animation Frames

I have an animation state in an animator and I need to be able to read the frames in c#. I need to know when it is at a specific frame. How can I read the frames?

You can use Animation Events (Unity - Manual: Use Animation Events) to trigger code to run at specific points of your animation clips.

I’ll try that. Thanks.