diff options
author | Teravus Ovares | 2007-11-12 12:43:01 +0000 |
---|---|---|
committer | Teravus Ovares | 2007-11-12 12:43:01 +0000 |
commit | cdd903c1733ab813897e7bb8510d44d452238285 (patch) | |
tree | e5c5cbe2939d7e529e66c39314b85e97136f6808 /bin | |
parent | Patch from Mathias Soeken (thanks Mathias!) to take care of the color (diff) | |
download | opensim-SC_OLD-cdd903c1733ab813897e7bb8510d44d452238285.zip opensim-SC_OLD-cdd903c1733ab813897e7bb8510d44d452238285.tar.gz opensim-SC_OLD-cdd903c1733ab813897e7bb8510d44d452238285.tar.bz2 opensim-SC_OLD-cdd903c1733ab813897e7bb8510d44d452238285.tar.xz |
* Applied Gerhard's Meshing patch (Thanks! Gerhard)
* Addition of Gerhard's ZeroMesher.
* Addition of meshing OpenSim.ini parameter
* Some modifications to the Meshmerizer
* Meshmerizer set to default meshing plugin because ZeroMesher needs a memory locking fix. We'll switch it back after the memory locking issue is resolved.
Diffstat (limited to '')
-rw-r--r-- | bin/OpenSim.ini.example | 10 | ||||
-rw-r--r-- | bin/mysql_connection.ini | 6 |
2 files changed, 13 insertions, 3 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 0fbb777..1a61425 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -1,5 +1,15 @@ | |||
1 | [Startup] | 1 | [Startup] |
2 | gridmode = false | 2 | gridmode = false |
3 | |||
4 | ; Select a mesher here. ZeroMesher is save and fast. | ||
5 | ; ZeroMesher also means that the physics engine models the physics of prims | ||
6 | ; sticking to the basic shapes the engine does support. Usually this is only a box. | ||
7 | ; Meshmerizer gives a better handling of complex prims by using triangle meshes. | ||
8 | ; Note, that only ODE physics currently deals with meshed prims in a satisfactoring way | ||
9 | ; ZeroMesher currently has a memory locking issue. | ||
10 | ; meshing = ZeroMesher | ||
11 | meshing = Meshmerizer | ||
12 | |||
3 | physics = basicphysics | 13 | physics = basicphysics |
4 | ; Prim Storage | 14 | ; Prim Storage |
5 | ; if you would like to use sqlite uncomment the following line (and | 15 | ; if you would like to use sqlite uncomment the following line (and |
diff --git a/bin/mysql_connection.ini b/bin/mysql_connection.ini index c8c6c8c..593727d 100644 --- a/bin/mysql_connection.ini +++ b/bin/mysql_connection.ini | |||
@@ -1,7 +1,7 @@ | |||
1 | [mysqlconnection] | 1 | [mysqlconnection] |
2 | hostname=localhost | 2 | hostname=localhost |
3 | database=database | 3 | database=opensim |
4 | username=username | 4 | username=openSim |
5 | password=password | 5 | password=f1r3st0rm |
6 | pooling=false | 6 | pooling=false |
7 | port=3306 \ No newline at end of file | 7 | port=3306 \ No newline at end of file |