Creating new character animation for Panda using Blender
This lab will not be a regular programming lab. Instead, you will be working inside of the Blender 3D modeling and animation package and then just quickly test your results in a simple Panda 3D program (see below).
Create the following python program in your working directory (it will not run yet because the model is missing):
import direct.directbase.DirectStartfrom pandac.PandaModulesimport *
from direct.actorimport Actor # To use animated Actors
bender = Actor.Actor("Models/g_char")
bender.reparentTo(render)
base.disableMouse()
base.camera.setPos(0, -15,0)
run()
Now Follow Along
Now we will go through the process of preparing a very simple animation for playback inside Panda 3D. Just follow along.