> For the complete documentation index, see [llms.txt](https://docs.yarnspinner.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.yarnspinner.dev/2.0/api/csharp/yarn.unity/yarn.unity.dialogueviewbase/yarn.unity.dialogueviewbase.readyfornextline.md).

# ReadyForNextLine()

Method in [DialogueViewBase](/2.0/api/csharp/yarn.unity/yarn.unity.dialogueviewbase.md)

## Summary

Signals that the user wants to go to the next line.

```csharp
public void ReadyForNextLine()
```

## Remarks

This method is generally called by a "continue" button, and causes the DialogueUI to signal the [DialogueRunner](/2.0/api/csharp/yarn.unity/yarn.unity.dialoguerunner.md) to proceed to the next piece of content.

If this method is called before the line has finished appearing (that is, before the line's status changes to [FinishedPresenting](https://github.com/YarnSpinnerTool/YSDocs/blob/versions/2.0/api/csharp/yarn.unity.linestatus.finishedpresenting.md) ), the line's status will change to [Interrupted](https://github.com/YarnSpinnerTool/YSDocs/blob/versions/2.0/api/csharp/yarn.unity.linestatus.interrupted.md) , and [OnLineStatusChanged(LocalizedLine)](/2.0/api/csharp/yarn.unity/yarn.unity.dialogueviewbase/yarn.unity.dialogueviewbase.onlinestatuschanged.md) will be called to notify the view.
