#How to Properly Collaborate DOTS with GameObjects?

1 messages · Page 1 of 1 (latest)

drifting acorn
#

I'm currently trying to implement a simple feature by using managed components to store the Animator, with the plan to switch animations through components that call the Animator. However, I've encountered an issue where GameObjects with attached authoring scripts seem to be entirely converted into entities, including skinnedMeshRender, leading to rendering errors. I don't want skinnedMeshRender to be converted, but it seems there's no way to prevent it.
My intention is to use both the animations and skinnedMeshRender of GameObjects in DOTS. Is this possible?

hollow kindle
#

You need to keep managed objects with animator and SMR outside entity subscene. Otherwise it will be converted to work with Entities.Graphics

drifting acorn
hollow kindle
#

Yes 🙂 But your questions was about GO + Entities