瀏覽代碼

Bugfix: changed method visibility from private to public to prevent compilation time errors.

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10841 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
Kae..pl 12 年之前
父節點
當前提交
a6004618ce
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      engine/src/blender/com/jme3/scene/plugins/blender/constraints/ConstraintHelper.java

+ 1 - 1
engine/src/blender/com/jme3/scene/plugins/blender/constraints/ConstraintHelper.java

@@ -390,7 +390,7 @@ public class ConstraintHelper extends AbstractBlenderHelper {
      *            the transform to be converted
      * @return 4x4 matrix that represents the given transform
      */
-    private Matrix4f toMatrix(Transform transform) {
+    public Matrix4f toMatrix(Transform transform) {
         Matrix4f result = Matrix4f.IDENTITY;
         if (transform != null) {
             result = this.toMatrix(transform.getTranslation(), transform.getRotation(), transform.getScale());