| 1128 |
string firstName = string.Empty; |
string firstName = string.Empty; |
| 1129 |
string lastName = string.Empty; |
string lastName = string.Empty; |
| 1130 |
string password = string.Empty; |
string password = string.Empty; |
| 1131 |
|
string startlocation = ""; |
| 1132 |
bool loadtextures = true; |
bool loadtextures = true; |
| 1133 |
|
|
| 1134 |
if (cnf != null) |
if (cnf != null) |
| 1141 |
backFaceCulling = cnf.GetBoolean("backface_culling", backFaceCulling); |
backFaceCulling = cnf.GetBoolean("backface_culling", backFaceCulling); |
| 1142 |
avatarMesh = cnf.GetString("avatar_mesh", avatarMesh); |
avatarMesh = cnf.GetString("avatar_mesh", avatarMesh); |
| 1143 |
avatarMaterial = cnf.GetString("avatar_material", avatarMaterial); |
avatarMaterial = cnf.GetString("avatar_material", avatarMaterial); |
| 1144 |
|
startlocation = cnf.GetString("start_location", ""); |
| 1145 |
} |
} |
| 1146 |
loadTextures = loadtextures; |
loadTextures = loadtextures; |
| 1147 |
MainConsole.Instance = m_console; |
MainConsole.Instance = m_console; |
| 1185 |
//Cordinate_XYZ_XZY = (CoordinateConversion. |
//Cordinate_XYZ_XZY = (CoordinateConversion. |
| 1186 |
|
|
| 1187 |
|
|
| 1188 |
avatarConnection.BeginLogin(loginURI, firstName + " " + lastName, password); |
avatarConnection.BeginLogin(loginURI, firstName + " " + lastName, password, startlocation); |
| 1189 |
//base.StartupSpecific(); |
//base.StartupSpecific(); |
| 1190 |
} |
} |
| 1191 |
|
|