c# split camera

Irrlicht.Net is no longer developed or supported, Irrlicht.Net Cross Platform is a much more complete wrapper. Please ask your C# related questions on their forums first.
Locked
kalapu
Posts: 2
Joined: Sat Sep 16, 2006 7:26 am

c# split camera

Post by kalapu »

Hi,


Whats the equivalence of the C++ code below in c#? I cant find the setActiveCamera in c# library. Please help.

//Activate camera1
smgr->setActiveCamera(camera[0]);
//Set viewpoint to the first quarter (left top)
driver->setViewPort(rect<s32>(0,0,ResX/2,ResY/2));
//Draw scene
smgr->drawAll();

Thanks,
Harun
ProSoft
Posts: 59
Joined: Thu Sep 08, 2005 10:55 am
Location: Brasil

Post by ProSoft »

look for a property ActiveCamera or method SetActiveCamera()
Locked