Skip to content

Instantly share code, notes, and snippets.

@bugshake
Created March 3, 2017 12:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bugshake/4753e7384ef76c826aa581b322d14a95 to your computer and use it in GitHub Desktop.
Save bugshake/4753e7384ef76c826aa581b322d14a95 to your computer and use it in GitHub Desktop.
Expose detectCollisions property in Rigidbody component
using UnityEngine;
using UnityEditor;
[CustomEditor(typeof(Rigidbody))]
public class RigidBodyInspector : Editor
{
public override void OnInspectorGUI()
{
Rigidbody target = (Rigidbody)this.target;
if (DrawDefaultInspector())
{
}
target.detectCollisions = EditorGUILayout.Toggle("Detect Collisions", target.detectCollisions);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment