Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help  Change aero constraint properties with script
#1
Hello
I want to change air density on my cloths on runtime. It works perfectly well if i change it manually in editor. I am probably just missing some call, and I cant find it in the docs. 
Now it looks like this.

Code:
ObiAerodynamicConstraints aero;
aero = this.GetComponent<ObiAerodynamicConstraints>();
aero.airDensity = 0.04f;

The value changes on the component in editor, but has no effect.
Reply
#2
(19-07-2018, 03:54 PM)domkonecny Wrote: Hello
I want to change air density on my cloths on runtime. It works perfectly well if i change it manually in editor. I am probably just missing some call, and I cant find it in the docs. 
Now it looks like this.

Code:
ObiAerodynamicConstraints aero;
aero = this.GetComponent<ObiAerodynamicConstraints>();
aero.airDensity = 0.04f;

The value changes on the component in editor, but has no effect.

You need to call

Code:
aero.PushDataToSolver();
Reply
#3
(19-07-2018, 04:23 PM)josemendez Wrote: You need to call

Code:
aero.PushDataToSolver();

I knew I was missing something so simple!
thank you so much
Reply