We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8fc9275 + 5944c64 commit 43f4c81Copy full SHA for 43f4c81
4 files changed
generator/csv/enums.csv
@@ -59,8 +59,8 @@ BattlerAnimationItemSkill,Movement,none,0
59
BattlerAnimationItemSkill,Movement,step,1
60
BattlerAnimationItemSkill,Movement,jump,2
61
BattlerAnimationItemSkill,Movement,move,3
62
-BattlerAnimationItemSkill,AfterImage,none,0
63
-BattlerAnimationItemSkill,AfterImage,add,1
+BattlerAnimationItemSkill,Afterimage,none,0
+BattlerAnimationItemSkill,Afterimage,add,1
64
BattlerAnimationPose,AnimType,character,0
65
BattlerAnimationPose,AnimType,battle,1
66
Chipset,AnimType,reciprocating,0
generator/csv/fields.csv
@@ -96,7 +96,7 @@ BattlerAnimationItemSkill,unknown02,f,Int32,0x02,0,0,1,
96
BattlerAnimationItemSkill,type,f,Enum<BattlerAnimationItemSkill_AnimType>,0x03,0,0,1,
97
BattlerAnimationItemSkill,weapon_animation_id,f,Ref<BattlerAnimationWeapon>,0x04,0,0,1,
98
BattlerAnimationItemSkill,movement,f,Enum<BattlerAnimationItemSkill_Movement>,0x05,0,0,1,
99
-BattlerAnimationItemSkill,after_image,f,Enum<BattlerAnimationItemSkill_AfterImage>,0x06,0,0,1,
+BattlerAnimationItemSkill,after_image,f,Enum<BattlerAnimationItemSkill_Afterimage>,0x06,0,0,1,
100
BattlerAnimationItemSkill,attacks,f,Int32,0x07,0,0,1,
101
BattlerAnimationItemSkill,ranged,f,Boolean,0x08,False,0,1,
102
BattlerAnimationItemSkill,ranged_animation_id,f,Ref<BattlerAnimationWeapon>,0x09,0,0,1,
src/generated/lcf/rpg/battleranimationitemskill.h
@@ -56,11 +56,11 @@ namespace rpg {
56
"jump",
57
"move"
58
);
- enum AfterImage {
- AfterImage_none = 0,
- AfterImage_add = 1
+ enum Afterimage {
+ Afterimage_none = 0,
+ Afterimage_add = 1
};
- static constexpr auto kAfterImageTags = lcf::makeEnumTags<AfterImage>(
+ static constexpr auto kAfterimageTags = lcf::makeEnumTags<Afterimage>(
"none",
"add"
@@ -90,7 +90,7 @@ namespace rpg {
90
os << static_cast<std::underlying_type_t<decltype(code)>>(code);
91
return os;
92
}
93
- inline std::ostream& operator<<(std::ostream& os, BattlerAnimationItemSkill::AfterImage code) {
+ inline std::ostream& operator<<(std::ostream& os, BattlerAnimationItemSkill::Afterimage code) {
94
95
src/generated/rpg_enums.cpp
@@ -57,7 +57,7 @@ constexpr decltype(BattlerAnimation::kPoseTags) BattlerAnimation::kPoseTags;
constexpr decltype(BattlerAnimationItemSkill::kSpeedTags) BattlerAnimationItemSkill::kSpeedTags;
constexpr decltype(BattlerAnimationItemSkill::kAnimTypeTags) BattlerAnimationItemSkill::kAnimTypeTags;
constexpr decltype(BattlerAnimationItemSkill::kMovementTags) BattlerAnimationItemSkill::kMovementTags;
-constexpr decltype(BattlerAnimationItemSkill::kAfterImageTags) BattlerAnimationItemSkill::kAfterImageTags;
+constexpr decltype(BattlerAnimationItemSkill::kAfterimageTags) BattlerAnimationItemSkill::kAfterimageTags;
constexpr decltype(BattlerAnimationPose::kAnimTypeTags) BattlerAnimationPose::kAnimTypeTags;
constexpr decltype(Chipset::kAnimTypeTags) Chipset::kAnimTypeTags;
constexpr decltype(Skill::kTypeTags) Skill::kTypeTags;
0 commit comments