AnimationDeveloper ExperienceEnhancementHelp wantedPerformancePortabilityRenderer
仓库指标
- 星标
- (3,524 个星标)
- PR 合并指标
- (PR 指标待抓取)
描述
Remove original animation system code from xrRender and use https://github.com/guillaumeblanc/ozz-animation
Advantages:
- Animation system has reasonably big amount of code that takes time to compile and it gets compiled two times because we have two renderers. Putting it into separate library is problematic due to
#ifdefs in the code. With ozz-animation we can just use separate GAPI-agnostic library. - More advanced features available.
- Designed with multithreading in mind. (https://guillaumeblanc.github.io/ozz-animation/samples/multithread/) Since animations calculations take reasonable amount of time during the frame, it's a good place for significant improvement.
- High-quality third party library – reduces code that we need to support ourselves.
Disadvantages, limitations?
To be identified.