Last active
November 13, 2015 07:52
-
-
Save peroon/d61e2b907ba16ab31880 to your computer and use it in GitHub Desktop.
rigidbodyをコードで変更する時はフラグ切り替えを挟む必要がある.cs
This file contains 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
if (rigidbody) { | |
rigidbody.isKinematic = true; | |
rigidbody.velocity = velocity; | |
rigidbody.useGravity = useGravity; | |
rigidbody.isKinematic = false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment