コード例 #1
0
 private void Start()
 {
     character = GetComponent <CharacterController>();
     detector  = GetComponent <GroundDetectorSphere>();
     measurer  = new VelocityMeasurer();
 }
コード例 #2
0
 public LandingChecker(GroundDetectorSphere _detector, CCJump _ccJump)
 {
     this.detector = _detector;
     this.ccJump   = _ccJump;
 }