How to control an actor movement in UDK

Posted by Mikalichov on Game Development See other posts from Game Development or by Mikalichov
Published on 2012-07-25T13:47:35Z Indexed on 2012/10/04 9:51 UTC
Read the original article Hit count: 228

Filed under:
|

This might be very basic, but I couldn't find something relevant to what I need (see below). I am working on a very basic thing: a 3D environment with some buildings, and actors walking inside it. It looks like following:

[IMG]http://themikal.com/wp-content/uploads/2012/07/udk_mikalichov001.jpg[/IMG]

I mainly want to manage to have one actor standing around, idling, and another walking around the area. Right now, this is done through matinee + skeletal mesh groups, and forcing a looped animation on the actors:

[IMG]http://themikal.com/wp-content/uploads/2012/07/udk_mikalichov002.jpg[/IMG]

But I realize this is super caveman-level. So I've build an AnimTree, linking the idling and directional animations to the corresponding nodes. But then, I'm stuck. I added the AnimTree in the actors properties, but nothing happens. I've tried MoveToActor, but no success - is there a thing to set to allow an actor to move? Also, I place the actors on the map manually (they are supposed to be unique), should I spawn them instead?

Every tutorial I find explains how to use an AnimTree for the player character, which is not what I want. I need a way to move the actors. I tried to look for AI tutorials, but only found UT3 bots-modifications, which is not what I need either.

Since I have so much trouble finding how to do this through Kismet, I'm starting to suspect this has to be done through scripting/coding, but I would like to be sure there is no way to do it through Kismet before going that route.

Every bit of answer about how to tell an actor something along the lines of "go in that direction as much as you can, then when you hit a wall turn 45° and continue" would be awesome.

I'll be happy to move/edit the question if there is any problem with it

© Game Development or respective owner

Related posts about programming

Related posts about udk