diff options
author | UbitUmarov | 2015-10-20 18:08:04 +0100 |
---|---|---|
committer | UbitUmarov | 2015-10-20 18:08:04 +0100 |
commit | 3e25430e3ac585884857c2632d7d2423f37b2116 (patch) | |
tree | 25e467bae34eabee666b2a3aa1d64845df03e104 /OpenSim/Data/SQLite/SQLiteSimulationData.cs | |
parent | stop using a Vector3 to store 3bits (diff) | |
download | opensim-SC-3e25430e3ac585884857c2632d7d2423f37b2116.zip opensim-SC-3e25430e3ac585884857c2632d7d2423f37b2116.tar.gz opensim-SC-3e25430e3ac585884857c2632d7d2423f37b2116.tar.bz2 opensim-SC-3e25430e3ac585884857c2632d7d2423f37b2116.tar.xz |
store rotation axis locks in MySql and SQlite dbs ( others need to be updated also
Diffstat (limited to 'OpenSim/Data/SQLite/SQLiteSimulationData.cs')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteSimulationData.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteSimulationData.cs b/OpenSim/Data/SQLite/SQLiteSimulationData.cs index 9055218..d7b3bbe 100644 --- a/OpenSim/Data/SQLite/SQLiteSimulationData.cs +++ b/OpenSim/Data/SQLite/SQLiteSimulationData.cs | |||
@@ -1764,6 +1764,7 @@ namespace OpenSim.Data.SQLite | |||
1764 | 1764 | ||
1765 | prim.PassCollisions = Convert.ToBoolean(row["PassCollisions"]); | 1765 | prim.PassCollisions = Convert.ToBoolean(row["PassCollisions"]); |
1766 | prim.PassTouches = Convert.ToBoolean(row["PassTouches"]); | 1766 | prim.PassTouches = Convert.ToBoolean(row["PassTouches"]); |
1767 | prim.RotationAxisLocks = Convert.ToByte(row["RotationAxisLocks"]); | ||
1767 | 1768 | ||
1768 | SOPVehicle vehicle = null; | 1769 | SOPVehicle vehicle = null; |
1769 | if (!(row["Vehicle"] is DBNull) && row["Vehicle"].ToString() != String.Empty) | 1770 | if (!(row["Vehicle"] is DBNull) && row["Vehicle"].ToString() != String.Empty) |
@@ -2185,9 +2186,9 @@ namespace OpenSim.Data.SQLite | |||
2185 | else | 2186 | else |
2186 | row["KeyframeMotion"] = new Byte[0]; | 2187 | row["KeyframeMotion"] = new Byte[0]; |
2187 | 2188 | ||
2188 | |||
2189 | row["PassTouches"] = prim.PassTouches; | 2189 | row["PassTouches"] = prim.PassTouches; |
2190 | row["PassCollisions"] = prim.PassCollisions; | 2190 | row["PassCollisions"] = prim.PassCollisions; |
2191 | row["RotationAxisLocks"] = prim.RotationAxisLocks; | ||
2191 | 2192 | ||
2192 | if (prim.VehicleParams != null) | 2193 | if (prim.VehicleParams != null) |
2193 | row["Vehicle"] = prim.VehicleParams.ToXml2(); | 2194 | row["Vehicle"] = prim.VehicleParams.ToXml2(); |