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
This commit is contained in:
parent
32b79324a9
commit
a6004618ce
@ -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());
|
||||
|
Loading…
x
Reference in New Issue
Block a user