18-02-2022, 06:29 PM
(18-02-2022, 08:52 AM)josemendez Wrote: Collision materials behave exactly like physics materials in Unity (and pretty much all physics engines): when two objects with different collision materials collide, the collision values used for friction, adhesion, etc are calculated according to the "combine" settings of the materials.Thank you so much for the help! I was trying to reference the property as ObiCollider.material, not ObiCollider.CollisionMaterial. I have a follow-up question, though. I'm pretty new to unity and C#, and I can't seem to figure out how to assign the CollisionMaterial asset reference. Right now, I have
See:
http://obi.virtualmethodstudio.com/manua...rials.html
https://docs.unity3d.com/Manual/class-Ph...erial.html
For instance, in a collision involving a material with zero friction and a material with 0.8 friction that have "friction combine" set to average, the resulting friction is (0 + 0.8)/2 = 0.4. If the materials have different combine settings, they're used in order of preference (lowest enum index first).
ObiCollider.CollisionMaterial is a public property, you might have been trying to access its private backing field. You should be able to set it in a script, see the API docs for details:
http://obi.virtualmethodstudio.com/api.html
cheers!
Code:
var Object = AssetDatabase.LoadMainAssetAtPath ("Assets/Obi/Samples/Common/SampleResources/CollisionMaterials/MyFriction.asset");
Code:
GameObject.Find("shoulder.R").AddComponent<ObiCollider>();
GameObject.Find("shoulder.R").GetComponent<ObiCollider>().CollisionMaterial = Object;