Merge branch 'main' of https://git.crystalyx.net/GameJams/Snaparazzi
This commit is contained in:
commit
683e2d5de4
@ -4,18 +4,17 @@
|
|||||||
|
|
||||||
public class CameraManager : MonoBehaviour
|
public class CameraManager : MonoBehaviour
|
||||||
{
|
{
|
||||||
public WebCamTexture wTexture;
|
|
||||||
public WebCamDevice wDevice;
|
public WebCamDevice wDevice;
|
||||||
public Button freezeButton;
|
public Button freezeButton;
|
||||||
public Button resumeButton;
|
public Button resumeButton;
|
||||||
public RawImage photoBox;
|
public RawImage photoBox;
|
||||||
private Texture2D photo;
|
private Texture2D photo;
|
||||||
private int numberOfWebcams;
|
private int numberOfWebcams;
|
||||||
|
private WebCamTexture wTexture;
|
||||||
|
|
||||||
// Start is called before the first frame update
|
// Start is called before the first frame update
|
||||||
void OnEnable()
|
void OnEnable()
|
||||||
{
|
{
|
||||||
wTexture = new WebCamTexture(wDevice.name);
|
|
||||||
WebcamResume();
|
WebcamResume();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -45,6 +44,9 @@ void Update()
|
|||||||
|
|
||||||
public void WebcamResume()
|
public void WebcamResume()
|
||||||
{
|
{
|
||||||
|
if (wTexture == null)
|
||||||
|
wTexture = new WebCamTexture(wDevice.name);
|
||||||
|
|
||||||
wTexture.Play();
|
wTexture.Play();
|
||||||
photo = null;
|
photo = null;
|
||||||
freezeButton.gameObject.SetActive(true);
|
freezeButton.gameObject.SetActive(true);
|
||||||
|
Loading…
Reference in New Issue
Block a user