Description
Viven에서 제공하는 Utility
Static Properties
Physics | Static Class | Viven에서 제공하는 Physics 관련 Utility |
Physics
Description
Viven에서 제공하는 Physics 관련 Utility
Static Methods
Method | Parameter | Return | Description |
RayCast | (Ray ray, float distance,out RaycastHit hitInfo) | bool | Raycast를 실행합니다. |
RayCastAll | (Ray ray, float distance) | RaycastHit[] | RaycastAll을 실행합니다. |
Example
local Ray = Ray(RightHandBone.position, RightHandBone.forward)
-- Lua에서는 C#의 Out을 return으로 받습니다.
local isHit, hitRayCast = VivenUtil.Physics.RayCast(Ray, 100.0)
if isHit then
if (hitRayCast.transform.name == "Cube") then
Debug.Log("Cube Hit")
end
end
Lua
복사