Appearance
Migrating from the Old Quickstart
Follow all of the steps in the Prerequisites page to setup your new project.
- To start, go to the
LConstantsclass and copy the values from your localizer's default values from its specific page in these docs. - Then, paste them into the
static{}block of theLConstantsclass in the new Quickstart. - Now, open your Localizer in your previous project / repository and copy the values from the localizer, and modify the default values to match your values.
- Next, open the
FConstantsclass. - Set the Localizer to the correct value by setting
FollowerConstants.localizers = Localizers.[LOCALIZER];where[LOCALIZER]is the localizer you are using. - Open your previous project / repository and copy the MODIFIED values from the
FollowerConstantsclass. - Modify the lines in the
static{}block of theFConstantsclass in the new Quickstart to match the values you had before. - If you have any other values that you have changed in the
FollowerConstantsclass, that are not covered in the quickstart, copy them over as well by creating a new line in thestatic{}block of theFConstantsclass. Then doFollowerConstants.[VARIABLE] = [VALUE];, where[VARIABLE]is the variable you want to change from the default and where[VALUE]is the value you want to set it to. - Make sure to update your opmodes to follow the guidelines that Constants sets down.