Reply To: Lua Basics for Ctrlr – Beginners

Home Forums General Programming Lua Basics for Ctrlr – Beginners Reply To: Lua Basics for Ctrlr – Beginners

#71964
human fly
Participant
    • Topics: 124
    • Replies: 1070
    • Total: 1194
    • ★★★★

    Panel classes here:
    https://sourceforge.net/p/ctrlrv4/code/HEAD/tree/nightly/Source/Core/CtrlrPanel/CtrlrPanel.h#l72

    this is casting more light. main repository for these pages:
    https://sourceforge.net/p/ctrlrv4/code/HEAD/tree/nightly/Source/Core/

    more terms: ‘const’, ‘void’,(‘static’, ‘static void’, etc.),
    ‘enum’.

    these *.h files look like a roadmap for Ctrlr Lua at this point.
    this merits a decent section in the manual – or at least an
    introduction and listing for the ones one is more likely to
    use.

    each ‘const’ is listed with a description, and the parameters
    it expects – this will help me make sense of what
    parameters are needed in parentheses following the function,
    -this has been a source of newbie confusion: why do some
    functions have nothing in parenthesis, and others have one
    or more eg: (mod,value), (0, false), (0, false, false) etc.

    here, i can see what those parameters are. something to
    chew on for today ;o)

    Ctrlr