hyperx quadcast s uk code example
Example 1: hyperx quadcast s uk
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All
Example 2: hyperx quadcast s uk
void CheckSpherecast(float radius, float detectableDistance, LayerMask detectableLayer) {
Ray ray = mainCamera.ScreenPointToRay(Input.mousePosition);
RaycastHit hitInfo;
if (Physics.SphereCast(ray, radius, out hitInfo, detectableDistance, detectableLayer)) {
Debug.Log(hitInfo);
}
}