- Add new Gradle config
- Target the auto_racer gradle project
- Paste
clean buildinto tasks (ifbuilddoesnt work for you tryjar)
- Java Application config
- Main class:
autoracer.yourclient.YourMainClass - Classpath of module:
org.avphs.yourclient.main - Under VM options, paste this line:
--module-path mods -m org.avphs.yourclient/org.avphs.yourclient.YourMainClass
- Included clients are
carclientandtraksim
- Main class:
- Extend
CarModuleand implement its method to crete a new runnable module - List your modules dependencies in the
getDependencies()method-
example:
@Override public Class[] getDependencies() { return new Class[] { ImageModule.class }; }
-
- Your module will be given its dependencies in
init() Run()will be called once per frame- Submit this frames
CarCommandsto the Core by returning them fromcommands()
- Create a feature branch off of master
- When ready, make a pull request to merge/rebase your branch into master
- If you branch passes CI tests and gets approved by one reviewer it can be merged
This project was created and is maintained by a group of highschool students in Portland, Oregon.
Bugs and requests: submit them through the project's issues tracker.
Questions: ask them at StackOverflow with the tag REPO.
Website: AVP_HS