Call Custom Method

Revision as of 07:45, 10 February 2025 by Azabiphetamine (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Call Custom Method is an event in the Actions Tab (also referred to as the VFX Tab) that can run custom methods and RDCode.

Call Custom Method
Screenshot of the Event Icon Call Custom Method
TabVFX
TypeCallCustomMethod
OriginrVersion
ShortcutZ

Usage

The "Sort offset" parameter can be used to prioritize some methods over others being run. Useful for prioritizing certain methods or making a hierarchy if needed.
The "Execution time" parameter determines whether the method is called on OnBar or on OnPreBar. Note that this behaviour may be overwritten if this event is placed at the beginning of the chart depending on the value "firstBeatBehaviour" in the .rdlevel file's settings.

Custom Methods

See List of Custom Methods.

RDCode

This event is also used for running RDCode expressions.

Surgery

{ "bar": X, "beat": X, "y": X, "type": "CallCustomMethod", "methodName": "", "executionTime": "OnBar", "sortOffset": 0 }

methodName (string)
RDCode to run.

executionTime (enum)
When to execute. Either "OnPreBar" or "OnBar." Behaviour may be overwritten if at the beginning of the chart depending on "firstBeatBehaviour" in the rdlevel file's settings.

sortOffset (number)
Sorting offset of the method relative to other methods. Useful for prioritizing certain methods or making a hierarchy if needed.

History

Trivia