I'm trying to create a new camera, yet VB.NET is giving me warnings about some of the camera settings, and when I compile I see that the second camera's settings affected the default camera's settings too.
Heres my code:
Dim WaterRefractionCamera As New DarkGDK.Camera.DefaultCamera()
WaterRefractionCamera.SetAspect(1.325)
WaterRefractionCamera.BackdropOff()
SetAspect and Backdropoff show the following warning:
Access of shared member, constant member, enum member or nested type through an instance; qualifying expression will not be evaluated.
I'm obviously not getting a new camera instance the correct way. So my question is how do I create a new camera instance?
The documentation or tutorials does not show anything about it.