1234567891011121314151617 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class UpdateScale : MonoBehaviour
- {
- // Start is called before the first frame update
- void Start()
- {
- }
- public Camera arCamera;
- // Update is called once per frame
- void Update()
- {
- Debug.Log("arCamera.fieldOfView==>"+arCamera.fieldOfView);
- }
- }
|