# ReadyForNextLine()

Method in [DialogueViewBase](https://docs.yarnspinner.dev/2.0/api/csharp/yarn.unity/yarn.unity.dialogueviewbase)

## 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](https://docs.yarnspinner.dev/2.0/api/csharp/yarn.unity/yarn.unity.dialoguerunner) 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)](https://docs.yarnspinner.dev/2.0/api/csharp/yarn.unity/yarn.unity.dialogueviewbase/yarn.unity.dialogueviewbase.onlinestatuschanged) will be called to notify the view.
