Commit Graph

  • 42530de219 PhysicsCollisionObject: add getDeactivationTime() and test buildscript Stephen Gold 2019-09-18 18:40:10 -0700
  • 2c2f76cca1 upload_native.sh: use "git diff" instead of "git diff-tree" Stephen Gold 2019-09-18 18:12:25 -0700
  • 91f304272a [ci skip] bullet: update osx natives travis-ci 2019-09-19 00:17:22 +0000
  • 1484107c92 [ci skip] bullet: update windows natives appveyor 2019-09-19 00:14:56 +0000
  • 392a3c5cff SixDofJoint: add getAngles() and test recent buildscript changes Stephen Gold 2019-09-18 17:09:12 -0700
  • 0f3bc6cdcf upload_native.sh: add debugging aids and comments Stephen Gold 2019-09-18 16:46:16 -0700
  • 0e2a19c826 fix for NPE when being called from CombinedTexture with null baseImage (#1146) v3.2 empirephoenix 2019-07-24 18:09:55 +0200
  • 5eaf653de9
    address issue #1119 (serialization with protected/private constructor) (#1181) Stephen Gold 2019-09-17 17:58:44 -0700
  • 3f428069f6 .travis.yml: specify "precise" env where Oracle JDK8 is still supported Stephen Gold 2019-09-17 13:49:30 -0700
  • 909ea30216 [ci skip] bullet: update osx natives travis-ci 2019-09-17 20:37:19 +0000
  • 637ccf91db [ci skip] bullet: update windows natives appveyor 2019-09-17 20:34:42 +0000
  • 30d1ecaec2 fix for issue #1157 (can't enable a TranslationalLimitMotor) Stephen Gold 2019-09-17 13:27:08 -0700
  • 607e24b2fa rm docs from v3.1 branch to reduce risk from issues like #1160 v3.1 Stephen Gold 2019-09-17 13:12:08 -0700
  • 3fe01dad80 rm docs from v3.2 branch to reduce risk from issues like #1160 Stephen Gold 2019-09-17 13:10:06 -0700
  • 3c74fe539c
    test and fix for issue #1138 (#1177) Stephen Gold 2019-09-17 08:53:19 -0700
  • 6aac1a21bd Continuous Integration: Change else-if to if, so that when multiple natives have been changed that multiple commits are issued. MeFisto94 2019-09-17 13:02:34 +0200
  • ad64b7e4b6 Continuous Integration: Fix regression in 21d0854b61. Variable was misnamed. MeFisto94 2019-09-17 12:37:01 +0200
  • 21d0854b61 Continuous Integration: Also upload natives from bullet-native-android and android (#1171) MeFisto94 2019-09-17 12:28:49 +0200
  • c461a1b43d .travis.yml: remove deployment of android-natives from ubuntu build so they don't conflict with the android build matrix (#1171) MeFisto94 2019-09-17 11:51:48 +0200
  • 9aa25ad3ef
    build.gradle: the clean task should remove merged javadoc Stephen Gold 2019-09-16 17:27:03 -0700
  • 04953341d4
    .travis.yml: continuous integration shouldn't need root privileges Stephen Gold 2019-09-16 13:13:51 -0700
  • 7a4e881bc6 Adding link to project tab. (#1170) mitm001 2019-09-16 09:19:56 -0700
  • 970eb7fa15 [ci skip] bullet: update windows natives appveyor 2019-09-16 13:55:03 +0000
  • 1bde90d1a1 Build android bullet-native on Travis (#1175) MeFisto94 2019-09-16 15:49:45 +0200
  • 194ae883c5
    fix for issue #99 (pr #1082) Stephen Gold 2019-09-15 21:43:11 -0700
  • 3ec89ce499 Fix and Improve TerrainPicking (#1049) MeFisto94 2019-09-16 04:57:06 +0200
  • 1ffd11fae4 Added a basic unit test for some of the AppStateManager functionality. (Specifically the stuff that deals with IDs.) Also added the ability to use groovy tests for those who like a little testing but aren't complete masochists. Paul Speed 2019-09-15 20:54:53 -0400
  • 36afe829c6 Part 2 of the small AppState refactoring: added methods to AppStateManager for retrieving an AppState by ID. Also modified attach() to throw an IllegalArgumentException if the ID is already registered. Updated TestAppStateLifeCycle to add a small ID demonstration. Paul Speed 2019-09-15 20:27:46 -0400
  • 3dd2755c20 Merge branch 'master' of https://github.com/jMonkeyEngine/jmonkeyengine Paul Speed 2019-09-15 19:40:36 -0400
  • 3b8314a36f Part 1 of small refactoring to give AppState a unique ID for lookup purposes. This is a breaking change for direct implementers of AppState as they must add a getId() method. (Which is also a good time to evaluate if they should be extending AbstractAppState or BaseAppState and/or if their life cycle is implemented correctly. e.g.: BulletAppState is breaking the AppState contract a bit.) Paul Speed 2019-09-15 19:38:50 -0400
  • 90d3b69bd1 Build Android Natives (OpenAL, Vorbis, TextureLoading) on Travis (#1171) MeFisto94 2019-09-14 20:26:18 +0200
  • ec01833fa1 EnvironmentProbeControl, for simpler env baking accellbaker Riccardo Balbo 2019-09-11 11:04:28 +0200
  • c91b2dd3f0 Add render filter Riccardo Balbo 2019-09-11 11:03:51 +0200
  • 0d8fe2ac22 Created a LazyMessageBuffer class that differs from GreedyMessageBuffer only in that it delays serialization until the message is requested. This should fix the issue where the initial server messages would sometimes fail to deserialize because the serialization registration message hadn't been processed before the other messages in the block were deserialized. Now each message will be deserialized as it is encountered. In the end the fix was simple enough that it's probably only a 2-3 line change to MessageProtocol in JME 3.2 if someone wants to back port the fix. (Just queue up ByteBuffer instead of Message.) Paul Speed 2019-09-08 21:17:04 -0400
  • 1c37d5a92d Refactored the base networking imlpementation's "MessageProtocol" to be an interface and strictly implement the to/from ByteBuffer protocol. In the future this will allow the message protocol to be swappable. Also moved out the buffering aspect since often buffers need to be created 'on the fly' and are separate from the protocol. This will allow me to play with fixing the issue related to messages being deserialized before the serialization registry message has been processed by swapping out the GreedyMessageBuffer implementation for a LazyMessageBuffer implementation. Paul Speed 2019-09-08 20:40:53 -0400
  • a9afcecc41
    Recognize .glsl files as glsllib. Riccardo Balbo 2019-09-02 09:25:41 +0200
  • b14bb34176 Accelerated env baker that runs on the GPU. Riccardo Balbo 2019-09-01 17:35:09 +0200
  • f1ab3be46c Added `level` field to the framebuffer and some refactoring to make it more user friendly (hopefully) Riccardo Balbo 2019-09-01 17:31:00 +0200
  • 484d192467 Some fixes in jme-vr (#1163) grizeldi 2019-08-29 08:15:57 +0200
  • 3d7a5ee01b
    Fixed an issue with previous commit Ali-RS 2019-08-13 11:39:02 +0430
  • 740832d699
    Renamed class to TestRtlBitmapText Ali-RS 2019-08-13 11:17:37 +0430
  • 16ccd36d56
    Rename TestRTLBitmapText.java to TestRtlBitmapText.java Ali-RS 2019-08-13 10:49:17 +0430
  • 53839ca528
    Added TestRTLBitmapText for issue #1158 (#1159) Ali-RS 2019-08-13 10:22:10 +0430
  • ae67b9c6f8 Update the link of the "Lightspeed Frontier". (#1160) Dima Myroniuk 2019-08-13 08:12:55 +0300
  • 467d7b2f0f Modified TransformTrack.jmeClone() return type to TransformTrack (#1155) Ali-RS 2019-07-30 18:03:08 +0430
  • 3fe896300d README.md: 3.2.4 is the latest stable version of the SDK sgold 2019-07-27 13:31:34 -0700
  • b864372256 Fix for NPE when running TestGImpactShape via TestChooser (#1151) Lou Hamersly 2019-07-25 11:08:40 -0400
  • acdeef54fe
    .travis.yml: specify "precise" Linux distro for JDK8 build Stephen Gold 2019-07-24 13:50:36 -0700
  • 80aed88f82 fix for NPE when being called from CombinedTexture with null baseImage (#1146) empirephoenix 2019-07-24 18:09:55 +0200
  • de092b92bb Wrap potential IOExceptions during native file extraction Lou Hamersly 2019-07-14 01:33:16 -0400
  • 5e05950ff6 [ci skip] bullet: update windows natives appveyor 2019-07-13 06:24:29 +0000
  • 8291d6192b gradle.properties: ready for 3.2.4-stable build v3.2.4-stable Stephen Gold 2019-07-12 23:17:00 -0700
  • a8bf087fd1 [ci skip] bullet: update linux natives travis-ci 2019-07-12 05:23:40 +0000
  • 4c3234ec1d [ci skip] bullet: update osx natives travis-ci 2019-07-12 05:23:31 +0000
  • 13500861c8 [ci skip] bullet: update windows natives appveyor 2019-07-12 05:23:02 +0000
  • 3523ab06d3 fix for issue #1141 sgold 2019-07-11 20:25:37 -0700
  • e31a047746 [ci skip] bullet: update linux natives travis-ci 2019-07-12 03:34:00 +0000
  • 9f51de98a5 [ci skip] bullet: update osx natives travis-ci 2019-07-12 03:33:45 +0000
  • e7bf627e9d [ci skip] bullet: update windows natives appveyor 2019-07-12 03:31:43 +0000
  • 23ee02071e fix for issue #1141 sgold 2019-07-11 20:25:37 -0700
  • 02ccce08ec
    Updated CONTRIBUTING.md (#1139) Ali-RS 2019-07-11 09:56:05 +0430
  • 57db8f618f Add support for gltf morph names. (#1100) Trevor Flynn 2019-07-10 21:21:26 -0800
  • b0d86f3480 [ci skip] bullet: update osx natives travis-ci 2019-07-10 17:40:55 +0000
  • 0a485ecfc0 [ci skip] bullet: update linux natives travis-ci 2019-07-10 17:40:03 +0000
  • 65aea20367 [ci skip] bullet: update windows natives appveyor 2019-07-10 17:39:04 +0000
  • 4bb8280fb2 fix for issue #1135 (ConeJoint causes rigid body to disappear) Stephen Gold 2019-07-04 08:29:30 -0700
  • b2a4f10782 jme3-examples: apply the "dirt_normal.png" normal map where appropriate sgold 2019-07-01 10:10:20 -0700
  • c996b50a3f make native Bullet the default for jme3-examples (instead of JBullet) Stephen Gold 2019-06-26 12:33:34 -0700
  • 8f3feb8012 when the image object has a ColorSpace value we pass it on, else we leave it at the default value. fix for #1106 (#1110) Remy 2019-06-26 18:26:28 +0200
  • eb5d0bea2a fix GImpact scaling in jme3-jbullet: issue #1120 sgold 2019-06-20 11:27:06 -0700
  • bf41bae18a fix GImpact scaling in jme3-bullet (native Bullet) sgold 2019-06-20 07:34:38 -0700
  • db89c64e4b jme3-bullet fix for issue #1125 (physics shapes don't match TerrainQuad) Stephen Gold 2019-06-18 12:30:54 -0700
  • 200714e2a8 add test for issue #1125 (heightfield shapes don't match TerrainQuad) Stephen Gold 2019-06-18 12:18:50 -0700
  • 190e42a677 fix for issue #1116 (NPE in TerrainGridAlphaMapTest) Stephen Gold 2019-06-18 10:05:00 -0700
  • 341117dd6e #1121-updateBound() call for PQTorus geometry updates (#1122) Lou H 2019-06-18 12:04:26 -0400
  • a5c1cd87e8 fix for issue #1127 ("Reset" action in TestHoveringTank) Stephen Gold 2019-06-18 08:50:49 -0700
  • 6efc25f5b2 fix for issue #1126 (TestHoveringTank assertion failures) Stephen Gold 2019-06-18 08:36:44 -0700
  • ccfaeab9d4 Issue 1113. Allow for Particle emitters that constantly have their particlesPerSec set to still emit (#1114) richardTingle 2019-06-09 01:12:04 +0100
  • a582b7d1ca #1107-Fix Javadoc warnings in OpenJDK 9+ (#1112) Stephen Gold 2019-06-08 20:06:23 -0400
  • dc4b71ce2b Attempt to fixing 1074 (#1093) Karan Nehra 2019-06-05 20:53:32 +0530
  • b0db8923d1 Fix Javadoc warnings in OpenJDK 9+ Lou Hamersly 2019-06-02 22:32:45 -0400
  • 5f55bf4d5d TestIssue99: specify panel widths, clarify interpretation of results Stephen Gold 2019-04-27 12:47:22 -0700
  • 0814858284 fix for issue #1037 (TestHoveringTank hull-shape performance issue) Stephen Gold 2019-04-12 23:03:56 -0700
  • 06aa011208 add a test case for issue #99 (blendMode="multiply" in NiftyGUI) Stephen Gold 2019-04-12 22:10:31 -0700
  • a516d18699 fix issue #1060: bt32BitAxisSweep3 not implemented Stephen Gold 2019-04-12 10:48:40 -0700
  • b1e7399d97 fixed wrong reference check Remy Van Doosselaer 2019-04-09 19:24:10 +0200
  • 14281eb8cb Fix printing if stencil is enable or disable quazi-irfan 2019-03-31 14:04:58 -0500
  • 37ee57e845 j3md Fix for default textures (#1052) Riccardo Balbo 2019-03-27 18:19:37 +0100
  • 67b32790ee Add tests for com.jme3/scene.mesh.VirtualIndexBuffer James Adam 2019-03-22 12:51:28 +0000
  • 31aab243e6 Add bullet extraction directory, bin and vscode config to gitignore Stephen Gold 2019-03-21 23:23:04 +0100
  • 5220659a0b TestGltfLoading: comment Stephen Gold 2019-03-18 13:21:53 -0700
  • 7058439e7d
    Merge pull request #1132 from riccardobl/fixfspace Riccardo Balbo 2019-07-08 09:33:27 +0200
  • 0ffc612bfb jme-core: IndexBuffer fixes & API improvements (#1136) Sebastian Teumert 2019-07-08 05:42:18 +0200
  • 827d4ebd52 Test for issue #1120 - JBullet GImpactShape fall-through (#1137) Lou H 2019-07-07 23:40:02 -0400
  • 1d5fe496e0 [ci skip] bullet: update linux natives travis-ci 2019-07-04 15:38:31 +0000
  • 69319738e6 [ci skip] bullet: update windows natives appveyor 2019-07-04 15:37:57 +0000
  • 918d90a637 [ci skip] bullet: update osx natives travis-ci 2019-07-04 15:37:31 +0000
  • f831301a2a fix for issue #1135 (ConeJoint causes rigid body to disappear) Stephen Gold 2019-07-04 08:29:30 -0700
  • 2ab0319202 jme3-examples: apply the "dirt_normal.png" normal map where appropriate sgold 2019-07-01 10:10:20 -0700
  • 8856ba7d25 GImpactShape Test Added (#1117) Lou H 2019-07-01 12:16:05 -0400