PlaneBtn.cs 226 B

12345678910111213
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class PlaneBtn : MonoBehaviour
  5. {
  6. public bool state;
  7. public void OnClick( bool state)
  8. {
  9. this.state = state;
  10. }
  11. }