YamangTools.YamangDll.SetCameraView C# (CSharp) Method

SetCameraView() private method

private SetCameraView ( float x, float y, float z ) : void
x float
y float
z float
return void
        public static extern void SetCameraView(float x, float y, float z);

Usage Example

示例#1
0
 private void SetCamera_Click(object sender, EventArgs e)
 {
     if (isRunning)
     {
         YamangDll.SetCameraView(Convert.ToInt32(GetNumber(CameraXVal)), Convert.ToInt32(GetNumber(CameraYVal)), Convert.ToInt32(GetNumber(CameraZVal)));
     }
 }
All Usage Examples Of YamangTools.YamangDll::SetCameraView