Creating your own options
Introduction
With the built in options you can only go so far. That's why you can create your own in qASIC. You can add them anywhere and they will be automatically detected and added to the list.
Creating your own options
To create an option you have to add the OptionsSetting attribute to a method that will handle it. You have to specify the name of the setting and he type of value it supports.
[OptionsSetting("sensitivity", typeof(float))]
public static void ChangeVSync(float value)
{
sensitivity = value;
}Last updated