Obi roadmap - Printable Version +- Obi Official Forum (https://obi.virtualmethodstudio.com/forum) +-- Forum: Obi Developers (https://obi.virtualmethodstudio.com/forum/forum-9.html) +--- Forum: Announcements (https://obi.virtualmethodstudio.com/forum/forum-10.html) +--- Thread: Obi roadmap (/thread-1487.html) |
RE: Obi roadmap - SimonP - 03-03-2023 Hi Jose! Any news on the compute backend? Or any info about the next update, keep us informed RE: Obi roadmap - xxxh123 - 24-04-2023 Hello, We know that switching CPU-based code to GPU-based requires tons of effort. No rush or anything. But can you inform us, if the compute backend is still on the roadmap? and maybe how long before it can release? Thanks & Regards! RE: Obi roadmap - josemendez - 24-04-2023 (24-04-2023, 09:44 AM)xxxh123 Wrote: Hello, Hi! I'm announcing a public beta this week, on this subforum. Keep an eye on it RE: Obi roadmap - calvantsang - 11-05-2023 Hi, do you ever hear about Dynamic Signed Distance Fields https://www.youtube.com/watch?v=xQfqtR7bbT8 this is the only video on Youtube talk about it, I know other cloth solution(not the Japanese one) is using this I have buy it and try it, it have pretty good outcome, It can help to simulate dynamic collider, it open up so much possible. For example, I really wanna have a better solution on character collider, but I found either it is very bad for performance, or It can't get it right. It theoretically can work with CPU, but way better with GPU. anyway, Still waiting for the beta of OBI 7,Very Look forward to try it Github of DSDF: https://github.com/Unity-Technologies/com.unity.demoteam.mesh-to-sdf RE: Obi roadmap - josemendez - 12-05-2023 (11-05-2023, 05:15 PM)calvantsang Wrote: Hi, do you ever hear about Dynamic Signed Distance Fields Hi there! Yes, dynamic SDFs are just regular SDFs that are updated every frame. This is only practical to do in the GPU, also works in the CPU - just not in realtime. Obi uses ASDFs, which are an adaptive version of SDFs that take up less memory since voxel size isn't constant. Here's a technical article about them: https://www.merl.com/publications/docs/TR2000-15.pdf These are pre-generated for any given mesh, but can be translated, rotated, and scaled at runtime. I've used these in the past for accurate collision detection against characters, by chopping up the body into parts (arm, forearm, thing, leg, torso, head, etc) and generating a SDF for each. This is both faster than dynamic SDFs (since the actual SDF data is 100% precomputed) and also much more accurate, since velocity data from the character bones can be used to perform continuous collision detection (dynamic SDFs are like a flipbook: one SDF per frame, but velocity information is ignored so only static collision detection is supported and it's not possible to accurately simulate friction). kind regards, RE: Obi roadmap - SimonP - 14-07-2023 Hi!! How is the testing of obi 7 going? I'm looking forward to seeing the performance difference on softbody, especially on skinnedmesh with lots of particles. I applied to the beta but no luck :p |