webcam load texture

Excuse me I want ask something about webcam, 1 I have webcam where it come like camera application. Then I want when I click shoot button the picture save at my another plane. How I can load the texture at my webcam plane to other plane ?? So it be like this :

  1. I have plane where it come the live camera mCamera.Play()
  2. Then if I click the shoot button, I pause the camera with mCamera.Pause(). So I catch the picture at camera pause
  3. How I can load the texture at my 1 plane which shows the camera pause picture to other plane, let’s call it plane2
    Thanks.

You will probably need to use a RenderTexture to have a Camera render the texture from the WebcamTexture to somewhere else. There are a lot of Google-able answers to doing this, take a look around. Most of the examples also include code to write it to a PNG or JPG file on disk.

ohh ok thanks