Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Obi roadmap
#25
(11-05-2023, 05:15 PM)calvantsang Wrote: 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  Gran sonrisa


Github of DSDF:
https://github.com/Unity-Technologies/co...esh-to-sdf

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,
Reply


Messages In This Thread
Obi roadmap - by josemendez - 20-11-2019, 12:36 PM
RE: Obi roadmap - by StudioTatsu - 20-11-2019, 04:37 PM
RE: Obi roadmap - by jp715 - 26-11-2019, 09:34 PM
RE: Obi roadmap - by josemendez - 28-11-2019, 03:50 PM
RE: Obi roadmap - by jp715 - 28-11-2019, 06:24 PM
RE: Obi roadmap - by VincentFTS - 19-12-2019, 10:14 AM
RE: Obi roadmap - by josemendez - 19-12-2019, 12:16 PM
RE: Obi roadmap - by KnotANumber - 23-11-2020, 09:57 PM
RE: Obi roadmap - by josemendez - 24-11-2020, 08:38 AM
RE: Obi roadmap - by whack - 29-12-2021, 09:51 AM
RE: Obi roadmap - by nocanwin - 07-01-2022, 03:15 AM
RE: Obi roadmap - by josemendez - 10-01-2022, 08:19 AM
RE: Obi roadmap - by nocanwin - 11-01-2022, 02:55 AM
RE: Obi roadmap - by locque - 30-06-2022, 07:50 AM
RE: Obi roadmap - by josemendez - 30-06-2022, 09:27 AM
RE: Obi roadmap - by Softscale - 13-10-2022, 10:25 PM
RE: Obi roadmap - by josemendez - 14-10-2022, 08:09 AM
RE: Obi roadmap - by xxxh123 - 20-12-2022, 02:50 AM
RE: Obi roadmap - by josemendez - 20-12-2022, 08:31 AM
RE: Obi roadmap - by spikebor - 25-01-2023, 08:52 AM
RE: Obi roadmap - by SimonP - 03-03-2023, 11:37 AM
RE: Obi roadmap - by xxxh123 - 24-04-2023, 09:44 AM
RE: Obi roadmap - by josemendez - 24-04-2023, 10:00 AM
RE: Obi roadmap - by calvantsang - 11-05-2023, 05:15 PM
RE: Obi roadmap - by josemendez - 12-05-2023, 09:58 AM
RE: Obi roadmap - by SimonP - 14-07-2023, 03:53 PM