1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

UnityPhysicsとColliderに関する注意点

Posted at

StaticオブジェクトにRaycastがヒットしない

ECSでJobのスクリプトを書いているときにraycastを使いたい場面は沢山あると思いますが、MonoBehaviorで使っていたRaycastALLとかは残念ながら使えないので、CastRayを使うことになります。
※詳しくは、以下ページの「7. Queries/Query - Custom Collector.unity」を参照
https://github.com/Unity-Technologies/EntityComponentSystemSamples/blob/master/PhysicsSamples/README.md

しかしながら、CastRayを使ってもヒットしなくて直近ハマったので、備忘録として残します。

結論から言うと、原因はColliderがアタッチされていることでした。
以下のようにBoxColliderがついていると、なぜかそのEntityにはCastRayが反応しない。
※しかも非アクティブ状態なのに...!!
image.png

とにかくECSを扱うとき、不要なColliderは全て除去しましょう。非アクティブ状態でもね。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?