• R/O
  • HTTP
  • SSH
  • HTTPS

提交列表

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Main repository of MikuMikuStudio


RSS
Rev. 时间 作者
ac4330d 2013-06-30 00:29:09 normen667

SDK:
- change update center locations

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10665 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

919a1ff 2013-06-30 00:23:12 normen667

SDK:
- Update bundled blender version to 2.67b

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10664 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

463bfb8 2013-06-28 07:08:35 remy.bouquet@gmail.com

- Fixed the way handedness/parity is computed in the tangent binormal generator

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10663 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

7c5ff65 2013-06-27 01:15:26 brentowens@gmail.com

removed the mesh collision shape from HelloTerrainCollision.java

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10662 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

dba8dc4 2013-06-23 04:48:45 remy.bouquet@gmail.com

fixed issue when saving a mesh in hw skinning mode was not restoring the buffers.
restored the code to enforce BoneIndex and BoneWeight to be in the heap for software anim because it was failing on android, until I find a proper solution

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10659 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

212f70d 2013-06-23 04:26:43 remy.bouquet@gmail.com

Hadrware skinning buffers are now not saved along the other buffers in a j3o file.
They are created when loading the model.
This was causing issue when loading j3o files saved before the change

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10658 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

b82affd 2013-06-22 19:03:40 remy.bouquet@gmail.com

Hardware Skinning now uses its own bone index and bone weight buffers. The vertex buffers are initialized empty when the model is loaded and placed in the cache.
They are populated only if hardware skinning is used with the model.

BoneIndex and BoneWeight buffers are now always CpuOnly and only used for Software Skinning.
Some enhancement could be done to save memory by not generating the bindPose buffers if hardware skinning is used as it doesn't need them.

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10657 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

afc6285 2013-06-22 07:38:36 void65536@googlemail.com

Nifty-1.3.3

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10656 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

4d58e02 2013-06-21 11:33:51 shadowisLORD

* Display LWJGL version when context is created (why was this part removed?)

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10655 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

a3ce317 2013-06-21 10:57:29 shadowisLORD

* MeshLoader: submesh names were not loaded properly due to incorrect check

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10654 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

92f4cfa 2013-06-19 06:02:28 remy.bouquet@gmail.com

fixed nifty dependencies

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10653 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

e920a7c 2013-06-19 01:54:19 iwgeric

Removed logging of unset uniform for Android to match Desktop and avoid flooding the log

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10652 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

b852948 2013-06-19 01:35:52 iwgeric

Set log level to FINEST for unset uniform

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10651 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

edcba9d 2013-06-18 11:54:47 iwgeric

Improve error message when shader uniform is not set

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10650 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

7fef219 2013-06-15 17:40:07 remy.bouquet@gmail.com

Matrix3f has now a normalize(Matrix3f store) and a normalizeLocal() method

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10649 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

6df71aa 2013-06-13 04:11:21 remy.bouquet@gmail.com

SpotLigth: the cosine of the inner and outer angle of a spotlight are packed in the same float to send it to the shader (to save some varryings). This imples that their precision is no more than 0.001. This was producing wrong lighting for very close angles because the cosine were equals.
There is now a check that ensure that the outer cos is lower than the inner cos.

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10648 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

7652e58 2013-06-10 01:06:56 remy.bouquet@gmail.com

BatchNode now uses absolute world transforsm to update the underlying batch mesh, instead of computing the offset from next frame.
The real geometry mesh data is now used as a bind pose.
This avoids errors accumulations over time in some case and is less expensive.
See this post for the original issue http://hub.jmonkeyengine.org/forum/topic/batchnode-bug/

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10647 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

291540b 2013-06-09 06:47:25 ractoc@gmail.com

first set of tests for the Geometry. There's 18 tests in total, covering roughly 40% of the total number of methods in the geometry class.

To get all the tests to run, I needed to add EasyMock and some related jar files. This enables me to mock classes other the the one actually being tested to get a better test isolation.

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10646 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

c628be4 2013-06-09 04:23:47 ractoc@gmail.com

Fixed the build path for the unit tests. Yesterday, I created a problem there. Which should be fixed now.

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10645 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

08232c0 2013-06-07 05:44:30 ractoc@gmail.com

Fixed the junit tests. They now work through the ant script as well as when run directly.
The fix required adding all the build/* folders to the "compile tests" libraries listing as well as moving the junit.jar in that listing to the top of the list.

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10644 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

d737a67 2013-06-07 03:11:27 ZeroSeparation@gmail.com

Fixed a bug where attempting to collide with an empty mesh (0 vertices) would throw an exception rather than returning 0 results.


git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10643 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

565d777 2013-06-06 05:17:47 remy.bouquet@gmail.com

GeometryBatchFactory, fixed wrong model bounds updating

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10642 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

fedb59f 2013-06-03 06:43:52 remy.bouquet@gmail.com

LodGenerator : fixed typo

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10641 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

f3fa5a6 2013-06-03 06:31:16 remy.bouquet@gmail.com

LodGenerator : updated licence

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10640 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

41ea473 2013-06-03 06:12:59 remy.bouquet@gmail.com

LodGenerator used squared length of en edge as parameter for its collapse cost instead of the length. It gives better results

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10639 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

bacce56 2013-06-03 01:44:47 remy.bouquet@gmail.com

Implemented a Lod Generator based on Ogre progressive mesh

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10638 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

f80e5d6 2013-06-02 06:56:06 shadowisLORD

* Fixed assertion error bug in NativeObjectManager.deleteAllObjects()
* Fixed ID collision bug in NativeObjectManager by introducing NativeObject.getUniqueId()

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10637 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

e9b12c7 2013-05-31 12:44:49 iwgeric@gmail.com

Android: fix missing period in javadoc

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10636 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

1eb08ed 2013-05-29 01:32:15 iwgeric

SDK: Update global library settings for Android OpenAL Soft

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10635 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

dc14d15 2013-05-29 01:30:57 iwgeric

SDK: Update location of Android OpenAL Soft jar file

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10634 75d07b2b-3a1a-0410-a2c5-0572b91ccdca