소스 검색

Minor clarification.

Mikael Säker 7 년 전
부모
커밋
38d98f6fb1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/en/manuals/physics.md

+ 1 - 1
docs/en/manuals/physics.md

@@ -218,7 +218,7 @@ Triggers are light weight collision objects. Thay are similar to ray casts in th
 
 ## Ray casts
 
-Ray casts are used to read the physics world along a linear ray. You provide a start and end position as well as a set of groups to test against. The engine returns a response message telling you whether there are physics objects (dynamic, kinematic or static) along the ray or not:
+Ray casts are used to read the physics world along a linear ray. You provide a start and end position as well as a set of groups to test against. The engine returns a response message telling you whether there are physics objects along the ray or not. Rays intersect with dynamic, kinematic and static objects, not with triggers.
 
 ```lua
 function update(self, dt)