This commit is contained in:
frutescens 2024-10-04 17:18:32 -07:00
parent 508569c79a
commit a840bdccfa

View File

@ -223,7 +223,7 @@ export default class SaveSlotSelectUiHandler extends MessageUiHandler {
const rightArrow = this.scene.add.image(0, 0, "cursor"); const rightArrow = this.scene.add.image(0, 0, "cursor");
rightArrow.setPosition(160, 0); rightArrow.setPosition(160, 0);
rightArrow.setName("rightArrow"); rightArrow.setName("rightArrow");
this.cursorObj.add([cursorBox, rightArrow]); this.cursorObj.add([ cursorBox, rightArrow ]);
this.sessionSlotsContainer.add(this.cursorObj); this.sessionSlotsContainer.add(this.cursorObj);
} }
const cursorPosition = cursor + this.scrollCursor; const cursorPosition = cursor + this.scrollCursor;