소스 검색

complete the fix for issue #1027

Stephen Gold 6 년 전
부모
커밋
ca33035941
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      jme3-bullet/src/main/java/com/jme3/bullet/PhysicsSpace.java

+ 1 - 1
jme3-bullet/src/main/java/com/jme3/bullet/PhysicsSpace.java

@@ -1018,7 +1018,7 @@ public class PhysicsSpace {
      * unaffected)
      * @return a new list of results (not null)
      */
-    public List rayTestRaw(Vector3f from, Vector3f to) {
+    public List<PhysicsRayTestResult> rayTestRaw(Vector3f from, Vector3f to) {
         List<PhysicsRayTestResult> results = new ArrayList<PhysicsRayTestResult>();
         rayTestRaw(from, to, results);