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>
|
/// </summary>
|
||||||
/// <param name="m_targetSpace"></param>
|
/// <param name="m_targetSpace"></param>
|
||||||
/// <param name="_mesh">/param>
|
/// <param name="_mesh">/param>
|
||||||
public void CreateGeom(IntPtr m_targetSpace, IMesh _mesh)
|
public void CreateGeom(IntPtr m_targetSpace, IMesh mesh)
|
||||||
{
|
{
|
||||||
#if SPAM
|
#if SPAM
|
||||||
Console.WriteLine("CreateGeom:");
|
Console.WriteLine("CreateGeom:");
|
||||||
#endif
|
#endif
|
||||||
if (_mesh != null)
|
if (mesh != null)
|
||||||
{
|
{
|
||||||
setMesh(_parent_scene, _mesh);
|
setMesh(_parent_scene, mesh);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue