Question: write output of code when run on unity using System.Collections; using UnityEngine; class Test : MonoBehaviour { public Rigidbody rb; void Update() { Ray ray
using System.Collections; using UnityEngine; class Test : MonoBehaviour \{ public Rigidbody rb; void Update() \{ Ray ray = new Ray(transform.position, Vector3.down); if (Physics.Raycast(ray, 2)) \{ Vector3 forceAmount = new Vector3(0,20,0); rb.AddForce(forceAmount); \} \} \} Output
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
