Hello people ,
Does anybody knows if Meta’s Application Spacewarp for standalone quests conflicts in some way with Entities.Graphics ?
I have 1000 physic bodies driven by ecs systems, reacting to the player hand tracking (ECS physic hands runing on OpenXR with Meta features) It works awesomly well but I’m limited by gpu ressources. I’m looking into Application spacewarp to increase the numbers.
ASW works for everything set to static in the subscene. It seems to also work with normal gameobjects moving too. But everything else gets really warped and teared up like crazy resulting in a big jittery blob. Even objects not moving at all (but not set to static).
Here’s what it looks like : https://www.youtube.com/shorts/WA5jhJyV8cE
The non moving spheres are normal gameobjects. But if I set them in the subscene for baking, the issue is there on these too.
It feels like the motion vectors aren’t registered correctly by the shaders. The warping/tearing looks like the pixels are trying to reach the origin of the world sometimes. Like if the motion vectors were all pointing to 0, 0, 0.
The shaders comes from the URP fork as advised in the Meta documentation. And I double checked the compiled shaders, I can see references to Application SpaceWarp and Motion Vectors registering passes in there.
Spacewarp works for sure, the framerate is 90 without it and it fall to 45 once it kicks in, the environment and normal gameobjects are smoothly rendered.
Any idea ?