Fixed jME that it can load Ogre meshes with shared geometry. Added support to skip null texture buffers (jME bug). Switched to jPCT 1.24. Checking vertex and UV buffers length and throwing a meaningful exception.
Fixed a bug causing an NPE when Blender exported Ogre models have no texture coordinates.
Applied the micro optimization EgonOlsen provided. Thanks Egon :)
BonesImporter now skips empty PoseTrack's. Added an option to samples to enable/disable texture rendering. Modified jME to preserve animation orders from mesh and skeleton files.
Modified Quaternion.slerp(..) method to avoid Quaternion creation.
jME 2.1 has a bug in loading pose animations. Fixed that.
Animated3D names are now written to stream. This changes stream version, formerly serialized groups should be re-serialized with BonedIO or script files.
Bones now imports submesh names from Collada and Ogre3D files. Added a method to AnimatedGroup to get an Animated3D by name.
Switched to jME 2.1. Also changed some piece of jME code to throw a meaningful exception instead of NPE.
Fixed classpath issue in import script files.
Animation of vertex normals has broken Android demo application so updated it to use latest (1.23 beta) jPCT AE jar. Added a light to Android demo scene to reflect animation of vertex normals. Added wakelock to Android demo to make it more look like a game. Cleaned some unnecessary pause-stop code in to Android demo.
Fixed a bug in ProceduralAnimationSample causing animation not applied to mesh.
Added Ogre3D and jME sources to zip.
Skeletal animation now updates vertex normals for proper lighting effects. However pose animation does not update normals since it is simply too expensive. Even Ogre3D does not do it, see this post.
Converted static filler objects in JointChannel to instance fields. This will slightly use more memory but will allow multiple threads operate on different JointChannel's. Added clone() method to SkeletonPose. Fixed incorrect documentation of ComLineArgs. Skeletal animation now updates vertex normals for proper lighting effects. However pose animation does not update normals since it is simply too expensive. Even Ogre3D does not do it, see this post. Switched to jPCT 1.22.
Removed the unnecessary warning when loading a scaled Collada model. Seems as Collada's V coordinate is flipped compared to OpenGL's (see this post). Started flipping V coordinate during loading to match OpenGL's.
Cloning Animated3D and AnimatedGroup copies autoApplyAnimation field. Micro optimization in Animated3D.applySkeletonPose(). Relaxed the assumption joints in jME skeleton are ordered such that parents come before children. Changed the internal mechanism joints are created out of jME bones.
Added setSkeletonPose(SkeletonPose) and removeFromWorld(World) methods to AnimatedGroup. Improved Android sample to show/animate up to 8 animated groups, added touch screen support and fast restore ability when GL surface is lost and restored again.
Updated documentation. Fixed a minor bug causing applying skeleton pose twice. Added a sample Android application.
Added support to load Ogre3D pose animations via jME's OgreXML loader. Renamed many classes to provide some space for new animations. Pose animations can be blended within each other and with a single skin animation. Completely decoupled jME and Ardor3D importing code into new classes. This was necessary to run Bones on Android (Dalvik refuses to load classes if there are constructors/methods which has parameters of unknown classes). Added support to scale/rotate objects/skeleton/animations at import time. Exposed some constructors, methods and data structures to allow programatically created animated objects, skeletons and animations. Added some more sample applications.
Updated documentation. Added support to clone SkinnedGroup.
Added support to load Ogre3D animation files (mesh.xml + skeleton.xml) via jME's OgreXMl loader. Main motivation behind this was figuring out Collada exporters for 3dsMax (both Max's built-in and OpenCollada) don't support Pyhsique modifier which is kind of annoying especially considering many of ready to buy models are skinned with Pyhsique modifier. In contrast Ogre3D has very nice exporters which both support Pyhsique and Skin modifier.
Ardor3D now supports loading animations and animation blending (SVN pre 0.7 version). Updated Bones accordingly without blending. This time I've significantly diverged from Ardor's implementation for sake of easy usage and to match jPCT semantics.
First release of Bones. This release is a port of Ardor3D's (0.6) animation system. Collada files are loaded via Ardor3D's Collada loader and then converted into Bones data structures. Ardor3D doesn't support loading animations and so does Bones. Only procedural animation is supported.