mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
refactor: rename CreateGeom _mesh argument to mesh, so as to not confuse this with the pre-existing _mesh field
This commit is contained in:
@@ -1358,14 +1358,14 @@ Console.WriteLine("ZProcessTaints for " + Name);
|
||||
/// </summary>
|
||||
/// <param name="m_targetSpace"></param>
|
||||
/// <param name="_mesh">/param>
|
||||
public void CreateGeom(IntPtr m_targetSpace, IMesh _mesh)
|
||||
public void CreateGeom(IntPtr m_targetSpace, IMesh mesh)
|
||||
{
|
||||
#if SPAM
|
||||
Console.WriteLine("CreateGeom:");
|
||||
#endif
|
||||
if (_mesh != null)
|
||||
if (mesh != null)
|
||||
{
|
||||
setMesh(_parent_scene, _mesh);
|
||||
setMesh(_parent_scene, mesh);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user