refactor: rename CreateGeom _mesh argument to mesh, so as to not confuse this with the pre-existing _mesh field
parent
f1ce17071d
commit
454312f5bc
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue