コード例 #1
0
 private void Update()
 {
     CommandLineHandler.ApplicationName = Application.productName;
     lock (CommandLineHandler.m_MainThreadCommandLines)
     {
         while (CommandLineHandler.m_MainThreadCommandLines.Count > 0)
         {
             CommandLineData commandLine = CommandLineHandler.m_MainThreadCommandLines.Dequeue();
             CommandLineHandler.CallMethod(commandLine);
         }
     }
 }