-
-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
merge from upstream #104
base: main
Are you sure you want to change the base?
merge from upstream #104
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good and nice PR :)
Ditto for all action command header comments. It renders with doxygen, and later we can use the param info for a language server/similar.
/* 0x083 */ s8 actionCommandMode; | ||
/* 0x084 */ s8 actionQuality; // actionCommandVar1 ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This rename is likely to cause very subtle problems (actionQuality changing meaning). We should be sure to let users know of it if they've touched action command code
AC_DIFFICULTY_4 = 4, // harder | ||
AC_DIFFICULTY_5 = 5, // hard | ||
AC_DIFFICULTY_6 = 6, // very hard | ||
AC_DIFFICULTY_7 = 7, // hardest |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe worth renaming these upstream to AC_DIFFICULTY_HARDEST etc? Unless there's a good reason not to that I'm missing
@@ -3,10 +3,19 @@ | |||
|
|||
#include "common_structs.h" | |||
|
|||
// args: none |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should use // @evtapi
API_CALLABLE(action_command_body_slam_init); | ||
|
||
// args: prep time, duration, difficulty, variation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should use // @param
No description provided.