SceneCmptIconByMiniMap.cs 539 B

12345678910111213141516171819202122232425
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. public class SceneCmptIconByMiniMap : MonoBehaviour
  6. {
  7. private void Awake()
  8. {
  9. }
  10. // Start is called before the first frame update
  11. void Start()
  12. {
  13. }
  14. // Update is called once per frame
  15. void Update()
  16. {
  17. //this.transform.TransformDirection(Vector3.up * 0);
  18. //transform.localEulerAngles = new Vector3(0, -135, 0);
  19. transform.eulerAngles = new Vector3(0, 0, 0);
  20. }
  21. }