Closed mgi388 closed 2 months ago
So I can do something like this:
app.add_systems( PostUpdate, update_my_sprites_anchor_and_size .after(AnimationSystemSet) .before(Sprite3dSystemSet), );
To keep my system ordered correctly with bevy_spritesheet_animation.
bevy_spritesheet_animation
Note: These seemed to have been made private in a cleanup commit, possibly accidentally?
Ah yes, sorry about that. I usually make anything that doesn't need to be exposed publically private so as not to pollute the API and I didn't think about this use case. Now I know better!
Thanks.
So I can do something like this:
To keep my system ordered correctly with
bevy_spritesheet_animation
.Note: These seemed to have been made private in a cleanup commit, possibly accidentally?