From 364f1ff174be1e3450a6deba8025b1e6ec908e09 Mon Sep 17 00:00:00 2001 From: NathanSweet Date: Fri, 27 Sep 2013 23:56:08 +0200 Subject: [PATCH] Default inherit to true. --- spine-csharp/src/BoneData.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spine-csharp/src/BoneData.cs b/spine-csharp/src/BoneData.cs index 412a90a58..7ed975585 100644 --- a/spine-csharp/src/BoneData.cs +++ b/spine-csharp/src/BoneData.cs @@ -38,7 +38,7 @@ namespace Spine { internal BoneData parent; internal String name; internal float length, x, y, rotation, scaleX = 1, scaleY = 1; - internal bool inheritScale, inheritRotation; + internal bool inheritScale = true, inheritRotation = true; /// May be null. public BoneData Parent { get { return parent; } }