|
@@ -35,7 +35,7 @@ package com.esotericsoftware.spine;
|
|
|
public class PhysicsConstraintData extends ConstraintData {
|
|
|
BoneData bone;
|
|
|
boolean x, y, rotate, scaleX, shearX;
|
|
|
- float step, inertia, strength, damping, friction, mass, wind, gravity, mix;
|
|
|
+ float step, inertia, strength, damping, mass, wind, gravity, mix;
|
|
|
|
|
|
public PhysicsConstraintData (String name) {
|
|
|
super(name);
|
|
@@ -122,14 +122,6 @@ public class PhysicsConstraintData extends ConstraintData {
|
|
|
this.damping = damping;
|
|
|
}
|
|
|
|
|
|
- public float getFriction () {
|
|
|
- return friction;
|
|
|
- }
|
|
|
-
|
|
|
- public void setFriction (float friction) {
|
|
|
- this.friction = friction;
|
|
|
- }
|
|
|
-
|
|
|
/** The inverse of the mass. */
|
|
|
public float getMass () {
|
|
|
return mass;
|