Hi,
Was wondering if anybody has any windows forms examples, where the scene is controlled via the windows form/events. I.E. Buttons to manipulate the camera and scene.
I'm looking to create an application to view 3DS meshs, but I want to use the Windows GUI instead of the IrrLicht gui..
Many thanks
Gibbo
Windows Form Example
I don't think there's any examples, but the code is the same as if it was in the Irrlicht event receiver.
If you add a button to add a cube, then the code behind the button click event is just device.SceneManager.AddCubeSceneNode(etc). A button to control camera would just update the camera.rotate or camera.position properties, etc.
If you add a button to add a cube, then the code behind the button click event is just device.SceneManager.AddCubeSceneNode(etc). A button to control camera would just update the camera.rotate or camera.position properties, etc.