ARBGManager.cs 280 B

12345678910111213
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using Vuforia;
  5. public class ARBGManager : MonoBehaviour
  6. {
  7. private void OnEnable()
  8. {
  9. GameObject go = GameObject.Find("VideoBackground");
  10. Debug.Log("go=====>"+ go.name);
  11. }
  12. }