User Tools

Site Tools


public:t-vien-07-1:lab_5_materials

This is an old revision of the document!


Lab 5 - Actors and State Machines

Before Coming to Class

  • Make sure you can run the Panda 3D sample programs on your machine

In-Class Excercises

Before You Start

Interacting with a moving actor

In this exercise, you have to create a character that paces around while he is unaware of you. But as soon as you come within a certain range, he stops and looks at you. While the character is watching you, you can click on him to start a conversation with him. If you have entered a conversation, you can click on something else to stop talking. If at any point you leave the character, he goes back to his pacing around. These states and the events that trigger transitions are shown in this figure.

- Create a World class derived from DirectObject like before and set up a camera at (0,-70,2) with FOV of 50 and a near clipping plane of 0.01. Load and display the environment model called environment (it comes standard with Panda 3D, so you don't need any path information) and scale it down to 30%. Add your camera movement code from Lab 2. Verify that you can now move around the landscape.

- Create a Character class derived from FSM.FSM (Finite State Machine). In the constructor, you first need to call the constructor of the parent like this:

FSM.FSM.__init__(self,"Character")

Then you should load an Actor from the model “Models/eve” with the animation 'Walk':'Models/eve_walk'“. Place the actor at (0,-20,0) and scale it down to 80%. Start your actor's Walk animation by calling loop(“Walk”) on your instance of it. Now create a new Sequence of intervals that first changes your actor's heading to -90 (in about 0.8 seconds) and then moves him to position (-10,-20,0) in about 9 seconds. Rotate back and move back to the original position. Now loop this interval and watch your actor pace around!

/var/www/cadia.ru.is/wiki/data/attic/public/t-vien-07-1/lab_5_materials.1170986506.txt.gz · Last modified: 2024/04/29 13:33 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki