Skip to content

How to use Lore Engine specific features

sayofthelor edited this page Mar 27, 2022 · 7 revisions

Here you can figure out how to use some special features included in Lore Engine!

Note scale tweening in LUA

To tween scale for notes, simply use noteTweenScaleX and noteTweenScaleY in the same way you use noteTweenX or noteTweenY. See Tweens and Timers if you don't know how to use this.

Custom per-character noteskins

To use custom noteskins per-character, open the character editor and change Noteskin name to the filename of the noteskin you would like to use.

This goes in assets/shared/images if you are compiling your mod and mods/images if you aren't.

Scroll underlay update function (for modcharts)

This Lua function makes it so the scroll underlay moves in conjunction with the left arrow. This is for modcharts and is disabled by default.

To enable it, go into your song's script.lua file and put setUnderlayUpdate(true) when you would like to enable it.

To disable it you can put setUnderlayUpdate(false).