Ejemplo n.º 1
0
    //FLASH


    // Use this for initialization
    void Start()
    {
        VuforiaARController vuforia = VuforiaARController.Instance;

        vuforia.RegisterVuforiaStartedCallback(OnVuforiaStarted);
        audioSource = GetComponent <AudioSource>();
        if (persistentDataPath == null)
        {
            persistentDataPath = Application.persistentDataPath;
        }
        Debug.Log("Data Path =  " + persistentDataPath);         // If you want to easily see where that is.

//		var vuforia = VuforiaARController.Instance;
//		vuforia.RegisterVuforiaStartedCallback(OnVuforiaStarted);
//		vuforia.RegisterOnPauseCallback(OnPaused);

        if (!PlayerPrefs.HasKey("firstLoad"))
        {
            instructionScreen.SetActive(true);
            PlayerPrefs.SetInt("firstLoad", 1);
        }
        else
        {
            mainMenu.SetActive(true);
        }
    }
Ejemplo n.º 2
0
    void Start()
    {
        VuforiaARController vuforia = VuforiaARController.Instance;

        vuforia.RegisterVuforiaStartedCallback(OnVuforiaStarted);
        vuforia.RegisterOnPauseCallback(OnPaused);
    }
    void Start()
    {
        VuforiaARController VuAR = VuforiaARController.Instance;

        VuAR.RegisterVuforiaStartedCallback(OnVuStarted);
        VuAR.RegisterOnPauseCallback(OnVuPaused);
    }
Ejemplo n.º 4
0
    void Start()
    {
        VuforiaARController vuforia = VuforiaARController.Instance;

        if (vuforia != null)
        {
            vuforia.RegisterVuforiaStartedCallback(StartAfterVuforia);
        }
    }
Ejemplo n.º 5
0
    // Start is called before the first frame update
    void Start()
    {
        VuforiaARController vuforia = VuforiaARController.Instance;

        if (vuforia != null)
        {
            vuforia.RegisterVuforiaStartedCallback(InitCameraAutoFocus);
        }
    }
Ejemplo n.º 6
0
    // Start is called before the first frame update
    void Start()
    {
        mPixelFormat = PIXEL_FORMAT.YV12;
        VuforiaARController ctrInstance = VuforiaARController.Instance;

        ctrInstance.RegisterVuforiaStartedCallback(OnVuforiaStarted);
        ctrInstance.RegisterTrackablesUpdatedCallback(OnTrackablesUpdated);
        ctrInstance.RegisterOnPauseCallback(OnPause);
    }
Ejemplo n.º 7
0
    /// <summary>
    /// 初期化
    /// </summary>
    void Start()
    {
        // インスタンス取得できたら、Vuforiaスタートコールバックを設定
        VuforiaARController vuforia = VuforiaARController.Instance;

        if (vuforia != null)
        {
            vuforia.RegisterVuforiaStartedCallback(StartAfterVuforia);
        }
    }
Ejemplo n.º 8
0
    void Start()
    {
        //VuforiaAbstractBehaviour vuforia = FindObjectOfType<VuforiaAbstractBehaviour>();
        //VuforiaBehaviour vuforia = (VuforiaBehaviour)FindObjectOfType(typeof(VuforiaBehaviour));

        VuforiaARController vuforia = VuforiaARController.Instance;

        vuforia.RegisterVuforiaStartedCallback(OnVuforiaStarted);
        vuforia.RegisterOnPauseCallback(OnPaused);
    }
Ejemplo n.º 9
0
    void Start()
    {
        Debug.Log("CAMERAFOCUSCONTROLLER: Start called");

        VuforiaARController vuforia = VuforiaARController.Instance;

        if (vuforia != null)
        {
            vuforia.RegisterVuforiaStartedCallback(StartAfterVuforia);
        }
    }
Ejemplo n.º 10
0
    // Use this for initialization
    void Start()
    {
        rotations = new Queue <Quaternion>(smoothingFrames);
        positions = new Queue <Vector3>(smoothingFrames);

        VuforiaARController vuforia = VuforiaARController.Instance;

//		qcarBehavior.RegisterVuforiaStartedCallback(OnInitialized);
//		qcarBehavior.RegisterTrackablesUpdatedCallback(OnTrackablesUpdated);

        vuforia.RegisterVuforiaStartedCallback(OnInitialized);
        vuforia.RegisterTrackablesUpdatedCallback(OnTrackablesUpdated);
    }
Ejemplo n.º 11
0
    void Start()
    {
        if (Application.loadedLevel == 14 || Application.loadedLevel == 13 || Application.loadedLevel == 8 || Application.loadedLevel == 9 || Application.loadedLevel == 10 || Application.loadedLevel == 11 || Application.loadedLevel == 7)
        {
            VuforiaARController vuforia = VuforiaARController.Instance;

            if (vuforia != null)
            {
                vuforia.RegisterVuforiaStartedCallback(SetAutofocus);
            }
            ARcam.SetActive(true);
        }
        else
        {
            ARcam.SetActive(false);
        }
        //MAINcamera_off ();
    }
Ejemplo n.º 12
0
    // Start is called before the first frame update
    void Start()
    {
        if (ImageTarget_Top != null && ImageTarget_Bottom != null && ImageTargetQR != null && toggleSwitchBoxQR != null)
        {
            //all true to initialize correctly the AR Camera with all targets
            ImageTargetQR.SetActive(true);
            ImageTarget_Top.SetActive(true);
            ImageTarget_Bottom.SetActive(true);
            //to activate it later
            //toggleSwitchBoxQR.SetActive(false);

            VuforiaARController vuforia = VuforiaARController.Instance;
            //crucial to launch Vuforia before setting the toggle : because incative target will not be taken into account by AR camera at the first launch
            if (vuforia != null)
            {
                vuforia.RegisterVuforiaStartedCallback(StartAfterVuforia);
            }
        }
    }
Ejemplo n.º 13
0
    private void Start()
    {
        VuforiaARController vuforia = VuforiaARController.Instance;

        vuforia.RegisterVuforiaStartedCallback(Focus);
    }
    private void Start()
    {
        VuforiaARController vb = VuforiaARController.Instance;

        vb.RegisterVuforiaStartedCallback(LoadDataSet);
    }