Unity. Physics.SphereCast()

์ตœ๋Œ€ 1 ๋ถ„ ์†Œ์š”

๐ŸŒŸ Physics.SphereCast()

์—ฐ์†ํ•˜๋Š” ๊ตฌ ์•ˆ์˜ ์ถฉ๋Œ์ฒด๋ฅผ ๋ฐ˜ํ™˜ํ•œ๋‹ค.

image-center ํ‘ธ๋ฅธ ์ง€์ ์˜ ์ถฉ๋Œ์ฒด๋ฅผ ๋ฐ˜ํ™˜

๐ŸŒŸ ์‚ฌ์šฉ๋ฒ•

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
	CharacterController charCtrl;
	
	void Start() {
		charCtrl = GetComponent<CharacterController>();
	}
	
	
    void Update() {
        RaycastHit hit;

        Vector3 p1 = transform.position + charCtrl.center;
        float distanceToObstacle = 0;
        
        // Cast a sphere wrapping character controller 10 meters forward
        // to see if it is about to hit anything.
        if (Physics.SphereCast(p1, charCtrl.height / 2, transform.forward, out hit, 10)) {
        	distanceToObstacle = hit.distance;
        }
    }
}

์œ ๋‹ˆํ‹ฐ ๊ณต์‹ ๋ฌธ์„œ์—์„œ ๋“ค๊ณ  ์™”๋‹ค. ์ธ์ž๋Š” ์‹œ์ž‘ ์ง€์ ๊ณผ ๊ตฌ์ฒด์˜ ๋ฐ˜๊ฒฝ, ray์˜ ๊ธธ์ด, layerMask๊ฐ€ ์ฃผ๋กœ ์“ฐ์ธ๋‹ค.

ํƒœ๊ทธ: ,

์นดํ…Œ๊ณ ๋ฆฌ:

์—…๋ฐ์ดํŠธ:

๋Œ“๊ธ€๋‚จ๊ธฐ๊ธฐ