public string ToString(CellNavigationMeshData.Mask <bool>?printMask = null) { var fg = new FileGeneration(); ToString(fg, printMask); return(fg.ToString()); }
public new Mask <R> Translate <R>(Func <TItem, R> eval) { var ret = new CellNavigationMeshData.Mask <R>(); this.Translate_InternalFill(ret, eval); return(ret); }
public void ToString(FileGeneration fg, CellNavigationMeshData.Mask <bool>?printMask = null) { fg.AppendLine($"{nameof(CellNavigationMeshData.Mask<TItem>)} =>"); fg.AppendLine("["); using (new DepthWrapper(fg)) { if (printMask?.UnusedWorldspaceParent ?? true) { fg.AppendItem(UnusedWorldspaceParent, "UnusedWorldspaceParent"); } if (printMask?.Parent ?? true) { fg.AppendItem(Parent, "Parent"); } } fg.AppendLine("]"); }