mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 01:36:02 +08:00
Fields shouldn't be public.
This commit is contained in:
parent
719e09d443
commit
ad6a3a0736
@ -41,12 +41,12 @@ import com.badlogic.gdx.math.Matrix3;
|
|||||||
public class Bone {
|
public class Bone {
|
||||||
final BoneData data;
|
final BoneData data;
|
||||||
final Bone parent;
|
final Bone parent;
|
||||||
public float x, y;
|
float x, y;
|
||||||
float rotation;
|
float rotation;
|
||||||
float scaleX, scaleY;
|
float scaleX, scaleY;
|
||||||
|
|
||||||
public float m00, m01, worldX; // a b x
|
float m00, m01, worldX; // a b x
|
||||||
public float m10, m11, worldY; // c d y
|
float m10, m11, worldY; // c d y
|
||||||
float worldRotation;
|
float worldRotation;
|
||||||
float worldScaleX, worldScaleY;
|
float worldScaleX, worldScaleY;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user