jabuwu / bevy_spine

A Bevy plugin for Spine
https://docs.rs/bevy_spine
Other
84 stars 5 forks source link

`bevy` 0.11 & `rusty_spine` 0.6 #9

Closed jabuwu closed 1 year ago

jabuwu commented 1 year ago

Preparing for upcoming Bevy 0.11 release. Will release a new rusty_spine at the same time.

fantasyRqg commented 1 year ago

I should have seen your work earlier 🤣

fantasyRqg commented 1 year ago

image Do you think it is usefull to utilize bevy task pool to parallelize the skeleton update ? AFAI, spine.update(time.delta_seconds()) should be compute-intensive.

jabuwu commented 1 year ago

image Do you think it is usefull to utilize bevy task pool to parallelize the skeleton update ? AFAI, spine.update(time.delta_seconds()) should be compute-intensive.

Yeah, it might be worth it to update in parallel. This thought crossed my mind a while back but unfortunately it might be blocked on this: https://github.com/jabuwu/rusty_spine/issues/1

You can open a separate issue or PR for this and I'll see what I can do to address the issue.