Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save peroon/d61e2b907ba16ab31880 to your computer and use it in GitHub Desktop.
Save peroon/d61e2b907ba16ab31880 to your computer and use it in GitHub Desktop.
rigidbodyをコードで変更する時はフラグ切り替えを挟む必要がある.cs
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