mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-10-30 08:01:01 +00:00
Whoops, forgot to save
This commit is contained in:
parent
3f9f877f5d
commit
8c92885a7b
4 changed files with 41 additions and 21 deletions
|
|
@ -169,6 +169,11 @@
|
|||
--- @field public UnagiTrajectory Pointer_Trajectory
|
||||
|
||||
--- @class BehaviorValues
|
||||
--- @field public BowlingBallBob2Speed number
|
||||
--- @field public BowlingBallBobSpeed number
|
||||
--- @field public BowlingBallThiLargeSpeed number
|
||||
--- @field public BowlingBallThiSmallSpeed number
|
||||
--- @field public BowlingBallTtmSpeed number
|
||||
--- @field public KingBobombFVel number
|
||||
--- @field public KingBobombHealth integer
|
||||
--- @field public KingBobombYawVel integer
|
||||
|
|
|
|||
|
|
@ -288,6 +288,11 @@
|
|||
|
||||
| Field | Type | Access |
|
||||
| ----- | ---- | ------ |
|
||||
| BowlingBallBob2Speed | `number` | |
|
||||
| BowlingBallBobSpeed | `number` | |
|
||||
| BowlingBallThiLargeSpeed | `number` | |
|
||||
| BowlingBallThiSmallSpeed | `number` | |
|
||||
| BowlingBallTtmSpeed | `number` | |
|
||||
| KingBobombFVel | `number` | |
|
||||
| KingBobombHealth | `integer` | |
|
||||
| KingBobombYawVel | `integer` | |
|
||||
|
|
|
|||
|
|
@ -207,6 +207,11 @@ struct BehaviorValues {
|
|||
s16 KingWhompHealth;
|
||||
s16 MipsStar1Requirement;
|
||||
s16 MipsStar2Requirement;
|
||||
f32 BowlingBallBobSpeed;
|
||||
f32 BowlingBallBob2Speed;
|
||||
f32 BowlingBallTtmSpeed;
|
||||
f32 BowlingBallThiLargeSpeed;
|
||||
f32 BowlingBallThiSmallSpeed;
|
||||
u8 ShowStarMilestones;
|
||||
struct StarsNeededForDialog starsNeededForDialog;
|
||||
struct BehaviorDialogs dialogs;
|
||||
|
|
|
|||
|
|
@ -207,8 +207,13 @@ static struct LuaObjectField sBehaviorTrajectoriesFields[LUA_BEHAVIOR_TRAJECTORI
|
|||
{ "UnagiTrajectory", LVT_TRAJECTORY_P, offsetof(struct BehaviorTrajectories, UnagiTrajectory), false, LOT_POINTER },
|
||||
};
|
||||
|
||||
#define LUA_BEHAVIOR_VALUES_FIELD_COUNT 20
|
||||
#define LUA_BEHAVIOR_VALUES_FIELD_COUNT 25
|
||||
static struct LuaObjectField sBehaviorValuesFields[LUA_BEHAVIOR_VALUES_FIELD_COUNT] = {
|
||||
{ "BowlingBallBob2Speed", LVT_F32, offsetof(struct BehaviorValues, BowlingBallBob2Speed), false, LOT_NONE },
|
||||
{ "BowlingBallBobSpeed", LVT_F32, offsetof(struct BehaviorValues, BowlingBallBobSpeed), false, LOT_NONE },
|
||||
{ "BowlingBallThiLargeSpeed", LVT_F32, offsetof(struct BehaviorValues, BowlingBallThiLargeSpeed), false, LOT_NONE },
|
||||
{ "BowlingBallThiSmallSpeed", LVT_F32, offsetof(struct BehaviorValues, BowlingBallThiSmallSpeed), false, LOT_NONE },
|
||||
{ "BowlingBallTtmSpeed", LVT_F32, offsetof(struct BehaviorValues, BowlingBallTtmSpeed), false, LOT_NONE },
|
||||
{ "KingBobombFVel", LVT_F32, offsetof(struct BehaviorValues, KingBobombFVel), false, LOT_NONE },
|
||||
{ "KingBobombHealth", LVT_S16, offsetof(struct BehaviorValues, KingBobombHealth), false, LOT_NONE },
|
||||
{ "KingBobombYawVel", LVT_S16, offsetof(struct BehaviorValues, KingBobombYawVel), false, LOT_NONE },
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue