/// <summary> /// Cancel the execution of the current script. /// </summary> public void Cancel() { this.m_isCanceled = true; if (m_processor != null) { m_processor.Cancel(); } }