Search found 5 matches

by orgad
Fri Aug 29, 2008 8:45 am
Forum: Beginners Help
Topic: third person camera + keyboard
Replies: 7
Views: 586

well the one i saw was

static bool device_OnEvent(Event p_e)
{
if (node != null && p_e.Type == EventType.KeyInputEvent &&
!p_e.KeyPressedDown)
{
switch (p_e.KeyCode)
{
case KeyCode.Key_W:
case KeyCode.Key_S:
{
Vector3D v = node.Position;
v.Y += p_e.KeyCode == KeyCode.Key_W ? 2.0f : -2 ...
by orgad
Fri Aug 29, 2008 8:14 am
Forum: Beginners Help
Topic: third person camera + keyboard
Replies: 7
Views: 586

well i would make WASD move my character but i dont know how to make the event actually work, because it doesnt seem to do what i say when W or S is pressed.

and making sure the camera will always look at the object wont do. lets say i turn around the object but i dont change its xyz position. the ...
by orgad
Fri Aug 29, 2008 7:50 am
Forum: Beginners Help
Topic: third person camera + keyboard
Replies: 7
Views: 586

third person camera + keyboard

Hello there :)
i recently started using irrlicht(.NET) and i saw the fps camera function which is very nice. but i want my camera to follow a character.
easy, i made a camera that just looks at the character.
good, now i just needed to learn how to rotate the camera and the object and to take input ...
by orgad
Wed Aug 27, 2008 12:18 pm
Forum: Beginners Help
Topic: docs for c#
Replies: 3
Views: 270

i see, found the docs.
thanks :)
by orgad
Wed Aug 27, 2008 10:27 am
Forum: Beginners Help
Topic: docs for c#
Replies: 3
Views: 270

docs for c#

Hello there :)
i was looking for a nice and free engine to use that uses c#
i found out this one uses c++ but also has API for c#.
the Documentation for the c++ api was awesome, awesome guides and explains but the problem is that i dont know c++ and dont like its syntax very much.

is there any ...