DragManager.cs 382 B

123456789101112131415
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class DragManager: MonoBehaviour
  5. {
  6. public GameObject focusRotModel;
  7. public GameObject focusScalModel;
  8. public GameObject eulerGame;
  9. public GameObject scaleGame;
  10. public Material LineMaterial;
  11. public Material boxMaterial;
  12. public Material boxClickMaterial;
  13. }