Created
March 3, 2017 12:46
-
-
Save bugshake/4753e7384ef76c826aa581b322d14a95 to your computer and use it in GitHub Desktop.
Expose detectCollisions property in Rigidbody component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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