Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help  Obi Fluid Materials Question
#3
(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.

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!
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
Code:
var Object = AssetDatabase.LoadMainAssetAtPath ("Assets/Obi/Samples/Common/SampleResources/CollisionMaterials/MyFriction.asset");
And then
Code:
GameObject.Find("shoulder.R").AddComponent<ObiCollider>();
GameObject.Find("shoulder.R").GetComponent<ObiCollider>().CollisionMaterial = Object;
And I keep getting an error that 'Object is a type, which is not valid in the given context'. How would I properly assign the 'MyFriction' asset to the collider material via a script?
Reply


Messages In This Thread
Obi Fluid Materials Question - by Freebird17 - 18-02-2022, 12:14 AM
RE: Obi Fluid Materials Question - by josemendez - 18-02-2022, 08:52 AM
RE: Obi Fluid Materials Question - by Freebird17 - 18-02-2022, 06:29 PM
RE: Obi Fluid Materials Question - by Freebird17 - 19-02-2022, 08:28 PM