Ali_RS
January 7, 2017, 9:26am
18
I could reproduce it.
The reason it happens on JME SDK 3.1 but not 3.0 is because it uses bullet native library while JME SDK 3.0 uses jbullet (a pure java port of bullet).
I do not know what goes wrong in native bullet version. It is something core developers can help with.
It also happens in TestPhysicsCar
/*
* Copyright (c) 2009-2021 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* * Neither the name of 'jMonkeyEngine' nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
This file has been truncated. show original
You can always switch to jbullet in SDK 3.1.
See
Hi
this problem is specific to alpha 5 SDK and works fine in previous versions.
I was trying to switch from native bullet (which is default in alpha 5) to jbullet in alpha 5. for switching i simply removed jme3-bullet and jme3-bullet-native libraries and added jme3-jbullet library.
then tested physic with “Jme Tests” project also other test codes but for all of them i got this error :
java.lang.NoClassDefFoundError: com/bulletphysics/colli…
1 Like