public void Represent(ILog log) { if (visualActionExecutor == null) { throw new ANE(nameof(visualActionExecutor)); } if (!IsReady) { throw new InvalidOperationException(); } currentSequence = visualActionExecutor.Execute(log); if (currentSequence == null) { Debug.LogWarning(Warnings.LogNotSupported(log)); } }