Browse Source

Default inherit to true.

NathanSweet 12 years ago
parent
commit
364f1ff174
1 changed files with 1 additions and 1 deletions
  1. 1 1
      spine-csharp/src/BoneData.cs

+ 1 - 1
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;
 
 		/// <summary>May be null.</summary>
 		public BoneData Parent { get { return parent; } }