Can't find the isKinematic on/off pick?

Hi,
I’m following an online tutorial, and l I’ve added the RigidBody2D component.
I need to set isKinematic to true from the menu, but I can’t find the option there as in the tutorial:
This is what I have after adding the RigidBody2D

(screenshot.net)

and thats how it looks on the tutorial:

(screenshot.net)

What am I missing here?

TNX for the help, thats my first time here

Unity 5.5 moved it to the Body Type dropbox.

3060369--229898--bodytype.png

TNX Ryiah
What is the defualt setting?
How can I can turn the “isKinematic” on/off?

TNX

Dynamic.

Just switch back and forth between body types. Choosing either Dynamic or Static as you want for off.

https://docs.unity3d.com/ScriptReference/RigidbodyType2D.Kinematic.html
https://docs.unity3d.com/ScriptReference/RigidbodyType2D.Dynamic.html
https://docs.unity3d.com/ScriptReference/RigidbodyType2D.Static.html

GetComponent<Rigidbody2D>().bodyType = RigidbodyType2D.Kinematic; // on
GetComponent<Rigidbody2D>().bodyType = RigidbodyType2D.Dynamic; // off
GetComponent<Rigidbody2D>().bodyType = RigidbodyType2D.Static; // off
4 Likes

TNX!

uzet1 did you solve your problem?
i have also same problem

Just set Body Type to “Kinematic”

6982109--823850--Inkedt_LI.jpg

thanks it hlped :wink:

No. I’m fairly certain their problem wasn’t that they were unwilling or unable to read previous responses that gave the answer. :wink:

1 Like