From 70189a94cb278087cb3896745078024e3e67e76c Mon Sep 17 00:00:00 2001 From: Sebastien Flory Date: Thu, 20 Feb 2014 10:30:22 +0100 Subject: [PATCH] Wrong type for rgba Hi, I think you did a typo. From my understanding of the code, the RGBA value should be numbers, not it (as they are in the RegionAttachement class). Thanks for the tool. --- spine-as3/spine-as3/src/spine/Skeleton.as | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spine-as3/spine-as3/src/spine/Skeleton.as b/spine-as3/spine-as3/src/spine/Skeleton.as index 2ccd80d57..12195006d 100644 --- a/spine-as3/spine-as3/src/spine/Skeleton.as +++ b/spine-as3/spine-as3/src/spine/Skeleton.as @@ -35,10 +35,10 @@ public class Skeleton { internal var _slots:Vector.; internal var _drawOrder:Vector.; internal var _skin:Skin; - public var r:int = 1; - public var g:int = 1; - public var b:int = 1; - public var a:int = 1; + public var r:Number = 1; + public var g:Number = 1; + public var b:Number = 1; + public var a:Number = 1; public var time:Number; public var flipX:Boolean; public var flipY:Boolean;