how to make animation for gui button?
Animation as animating images? Load your texture sequence using Resources.Load() - do it once (for instance on Start) and keep references inside an array.
Inside OnGUI() method loop through the array (using some timing logic) and change the Button content’s image.
thanks for help i try that