Search found 4 matches
- Sat Apr 21, 2007 1:12 am
- Forum: Open Discussion and Dev Announcements
- Topic: 3rd Person Camera
- Replies: 1
- Views: 705
3rd Person Camera
Are there any good 3rd person cameras made in Irrlicht? I am in need of one for an RPG project I am working on.
- Wed Apr 18, 2007 8:22 pm
- Forum: Beginners Help
- Topic: Movement Edit
- Replies: 5
- Views: 355
- Tue Apr 17, 2007 7:13 pm
- Forum: Beginners Help
- Topic: Movement Edit
- Replies: 5
- Views: 355
I changed the class to the one olive suggested, and I can't get it to move. Would I put
in the game loop or the class OnEvent()?
Code: Select all
if(receiver.Keys[KEY_KEY_W])
{
v.Y = v.Y + 2.0f;
}
- Tue Apr 17, 2007 12:06 am
- Forum: Beginners Help
- Topic: Movement Edit
- Replies: 5
- Views: 355
Movement Edit
I was editing the movement tutorials, and the only change I made was the event reciever class. My exact MyEventReciever follows.
class MyEventReceiver : public IEventReceiver
{
public:
virtual bool OnEvent (SEvent event)
{
if (node != 0 && event.EventType == EET_KEY_INPUT_EVENT && !event ...
class MyEventReceiver : public IEventReceiver
{
public:
virtual bool OnEvent (SEvent event)
{
if (node != 0 && event.EventType == EET_KEY_INPUT_EVENT && !event ...