DX MODDING GUIDE
  • Welcome to the DX Modding Guide!
  • File Structure
    • Folder Structure
    • Mod File
    • Metadata
  • Lua API
    • Working with GML
    • Callbacks
    • Assets
      • Sprites
      • Sounds
      • Fonts
    • Properties
    • Modcharts
    • FNFFD Functions
  • basic tutorials
    • Custom Songs
    • Example Mods
Powered by GitBook
On this page
  • Setting
  • setNotePos(note: Int, x: Int, y: Int)
  • setNoteX(note: Int, x: Int)
  • setNoteY(note: Int, y: Int)
  • setNoteAngle(note: Int, angle: Int)
  • setNoteScale(note: Int, xscale: Int, yscale: Int)
  • setNoteScaleX(note: Int, xscale: Int)
  • setNoteScaleY(note: Int, yscale: Int)
  • setNoteAlpha(note: Int,alpha: Int)
  • Getting
  • getNoteX(note: Int)
  • getNoteY(note: Int)
  • getNoteAngle(note: Int)
  • getNoteScaleX(note: Int)
  • getNoteScaleY(note: Int)
  • getNoteAlpha(note: Int)
  1. Lua API

Modcharts

Setting

setNotePos(note: Int, x: Int, y: Int)

sets note position

setNoteX(note: Int, x: Int)

sets note X

setNoteY(note: Int, y: Int)

sets note Y

setNoteAngle(note: Int, angle: Int)

sets note angle

setNoteScale(note: Int, xscale: Int, yscale: Int)

sets note scale

setNoteScaleX(note: Int, xscale: Int)

sets note width

setNoteScaleY(note: Int, yscale: Int)

sets note height

setNoteAlpha(note: Int,alpha: Int)

sets note alpha

Getting

getNoteX(note: Int)

gets note X

getNoteY(note: Int)

gets note Y

getNoteAngle(note: Int)

gets note angle

getNoteScaleX(note: Int)

gets note width

getNoteScaleY(note: Int)

gets note height

getNoteAlpha(note: Int)

gets note alpha

PreviousPropertiesNextFNFFD Functions

Last updated 8 months ago