UNPKG

phaser4-rex-plugins

Version:
16 lines (14 loc) 375 B
export default { scrollToLine(lineIndex) { this.setChildOY(-this.lineHeight * lineIndex); return this; }, scrollToNextLine(lineCount) { if (lineCount === undefined) { lineCount = 1; } var lineIndex = this.lineIndex + lineCount; this.scrollToLine(lineIndex); return this; } }