AmplifyShaderEditor.NodeUsageRegister.Dump C# (CSharp) Method

Dump() public method

public Dump ( ) : void
return void
		public void Dump()
		{
			string data = string.Empty;

			for( int i = 0; i < m_nodesArr.Length; i++ )
			{
				data += m_nodesArr[ i ] + " " + m_nodeIDs[ i ] + '\n';
			}
			Debug.Log( data );
		}