From 2154e719166e8d75165121f48d27e671513a22a0 Mon Sep 17 00:00:00 2001 From: Nick Hardeman Date: Wed, 14 Nov 2018 20:38:23 -0500 Subject: [PATCH 1/2] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 52ef79d..4439578 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ Features include: * Multiple Animations with individual control * External Bone Control with Animations * Linear Bone Animation Blending between two animations +* Define animations * Textures * Cameras * Materials @@ -28,6 +29,11 @@ The example projects include a ofApp.cpp and main.cpp. The project generator wil ![libiconv](ReadMeImages/libiconv.png) +If you have a fbx with a single animation that needs to be broken up into separate animations, you can try the following: +`mScene.load( "Alligator.FBX", tsettings ); +mScene.clearAnimations(); +mScene.addAnimation("SwimBite", 81, 100 ); +mScene.addAnimation("Swim", 61, 80 );` ### Blender workflow. Using Blender 2.63, the FBX exporter is not fully featured and there are known bugs that may be fixed in the future. From cc1397632af59cce644f081195b42bbb13d317cb Mon Sep 17 00:00:00 2001 From: Nick Hardeman Date: Wed, 14 Nov 2018 20:38:52 -0500 Subject: [PATCH 2/2] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4439578..071c2e5 100644 --- a/README.md +++ b/README.md @@ -30,10 +30,10 @@ The example projects include a ofApp.cpp and main.cpp. The project generator wil ![libiconv](ReadMeImages/libiconv.png) If you have a fbx with a single animation that needs to be broken up into separate animations, you can try the following: -`mScene.load( "Alligator.FBX", tsettings ); -mScene.clearAnimations(); -mScene.addAnimation("SwimBite", 81, 100 ); -mScene.addAnimation("Swim", 61, 80 );` +`mScene.load( "Alligator.FBX", tsettings );` +`mScene.clearAnimations();` +`mScene.addAnimation("SwimBite", 81, 100 );` +`mScene.addAnimation("Swim", 61, 80 );` ### Blender workflow. Using Blender 2.63, the FBX exporter is not fully featured and there are known bugs that may be fixed in the future.