- March 26, 2007
- 3,715
- 180
- Home Country
- Germany
There is a cut and paste bug in GUIAnimation.cs :<br /> <br /> _images[index].MaskFileName = _maskFileName;<br /> _images[index].FlipY = _flipX;<br /> _images[index].FlipY = _flipY;<br /> <br /> should be changed to<br /> <br /> _images[index].MaskFileName = _maskFileName;<br /> _images[index].FlipX = _flipX;<br /> _images[index].FlipY = _flipY;
Continue reading...
Continue reading...