Make certain GraphNodeObject fields mutable again
This commit is contained in:
parent
2703f7193a
commit
3a93423fcc
|
@ -101,7 +101,7 @@ override_field_immutable = {
|
|||
"SpawnInfo": [ "syncID", "next", "unk18" ],
|
||||
"CustomLevelInfo": [ "next" ],
|
||||
"GraphNode": [ "children", "next", "parent", "prev", "type" ],
|
||||
"GraphNodeObject": [ "*" ],
|
||||
"GraphNodeObject": [ "activeAreaIndex", "angle", "animInfo", "areaIndex", "cameraToObject", "node", "pos", "prevAngle", "prevPos", "prevScale", "prevScaleTimestamp", "prevShadowPos", "prevShadowPosTimestamp", "prevThrowMatrix", "prevThrowMatrixTimestamp", "prevTimestamp", "scale", "shadowPos", "sharedChild", "skipInterpolationTimestamp", "throwMatrix", "throwMatrixPrev", "unk4C", ],
|
||||
"ObjectWarpNode": [ "next "],
|
||||
"Animation": [ "length" ],
|
||||
"AnimationTable": [ "count" ],
|
||||
|
|
|
@ -342,15 +342,6 @@ INSTANT_WARP_INDEX_START = 0x00
|
|||
--- @type integer
|
||||
INSTANT_WARP_INDEX_STOP = 0x04
|
||||
|
||||
--- @type integer
|
||||
LOADED_GRAPH_NODES_EXTENDED = 512
|
||||
|
||||
--- @type integer
|
||||
LOADED_GRAPH_NODES_VANILLA = 256
|
||||
|
||||
--- @type integer
|
||||
MAX_LOADED_GRAPH_NODES = (LOADED_GRAPH_NODES_VANILLA + LOADED_GRAPH_NODES_EXTENDED)
|
||||
|
||||
--- @type integer
|
||||
WARP_TRANSITION_FADE_FROM_BOWSER = 0x12
|
||||
|
||||
|
|
|
@ -70,9 +70,6 @@
|
|||
## [area.h](#area.h)
|
||||
- INSTANT_WARP_INDEX_START
|
||||
- INSTANT_WARP_INDEX_STOP
|
||||
- LOADED_GRAPH_NODES_EXTENDED
|
||||
- LOADED_GRAPH_NODES_VANILLA
|
||||
- MAX_LOADED_GRAPH_NODES
|
||||
- WARP_TRANSITION_FADE_FROM_BOWSER
|
||||
- WARP_TRANSITION_FADE_FROM_CIRCLE
|
||||
- WARP_TRANSITION_FADE_FROM_COLOR
|
||||
|
|
|
@ -831,7 +831,7 @@
|
|||
| animInfo | [AnimInfo](structs.md#AnimInfo) | read-only |
|
||||
| areaIndex | `integer` | read-only |
|
||||
| cameraToObject | [Vec3f](structs.md#Vec3f) | read-only |
|
||||
| disableAutomaticShadowPos | `boolean` | read-only |
|
||||
| disableAutomaticShadowPos | `boolean` | |
|
||||
| node | [GraphNode](structs.md#GraphNode) | read-only |
|
||||
| pos | [Vec3f](structs.md#Vec3f) | read-only |
|
||||
| prevAngle | [Vec3s](structs.md#Vec3s) | read-only |
|
||||
|
@ -844,10 +844,10 @@
|
|||
| prevThrowMatrixTimestamp | `integer` | read-only |
|
||||
| prevTimestamp | `integer` | read-only |
|
||||
| scale | [Vec3f](structs.md#Vec3f) | read-only |
|
||||
| shadowInvisible | `boolean` | read-only |
|
||||
| shadowInvisible | `boolean` | |
|
||||
| shadowPos | [Vec3f](structs.md#Vec3f) | read-only |
|
||||
| sharedChild | [GraphNode](structs.md#GraphNode) | read-only |
|
||||
| skipInViewCheck | `boolean` | read-only |
|
||||
| skipInViewCheck | `boolean` | |
|
||||
| skipInterpolationTimestamp | `integer` | read-only |
|
||||
| throwMatrix | `Pointer` <`Mat4`> | read-only |
|
||||
| throwMatrixPrev | `Pointer` <`Mat4`> | read-only |
|
||||
|
|
|
@ -649,7 +649,7 @@ static struct LuaObjectField sGraphNodeObjectFields[LUA_GRAPH_NODE_OBJECT_FIELD_
|
|||
{ "animInfo", LVT_COBJECT, offsetof(struct GraphNodeObject, animInfo), true, LOT_ANIMINFO },
|
||||
{ "areaIndex", LVT_S8, offsetof(struct GraphNodeObject, areaIndex), true, LOT_NONE },
|
||||
{ "cameraToObject", LVT_COBJECT, offsetof(struct GraphNodeObject, cameraToObject), true, LOT_VEC3F },
|
||||
{ "disableAutomaticShadowPos", LVT_BOOL, offsetof(struct GraphNodeObject, disableAutomaticShadowPos), true, LOT_NONE },
|
||||
{ "disableAutomaticShadowPos", LVT_BOOL, offsetof(struct GraphNodeObject, disableAutomaticShadowPos), false, LOT_NONE },
|
||||
{ "node", LVT_COBJECT, offsetof(struct GraphNodeObject, node), true, LOT_GRAPHNODE },
|
||||
{ "pos", LVT_COBJECT, offsetof(struct GraphNodeObject, pos), true, LOT_VEC3F },
|
||||
{ "prevAngle", LVT_COBJECT, offsetof(struct GraphNodeObject, prevAngle), true, LOT_VEC3S },
|
||||
|
@ -662,10 +662,10 @@ static struct LuaObjectField sGraphNodeObjectFields[LUA_GRAPH_NODE_OBJECT_FIELD_
|
|||
{ "prevThrowMatrixTimestamp", LVT_U32, offsetof(struct GraphNodeObject, prevThrowMatrixTimestamp), true, LOT_NONE },
|
||||
{ "prevTimestamp", LVT_U32, offsetof(struct GraphNodeObject, prevTimestamp), true, LOT_NONE },
|
||||
{ "scale", LVT_COBJECT, offsetof(struct GraphNodeObject, scale), true, LOT_VEC3F },
|
||||
{ "shadowInvisible", LVT_BOOL, offsetof(struct GraphNodeObject, shadowInvisible), true, LOT_NONE },
|
||||
{ "shadowInvisible", LVT_BOOL, offsetof(struct GraphNodeObject, shadowInvisible), false, LOT_NONE },
|
||||
{ "shadowPos", LVT_COBJECT, offsetof(struct GraphNodeObject, shadowPos), true, LOT_VEC3F },
|
||||
{ "sharedChild", LVT_COBJECT_P, offsetof(struct GraphNodeObject, sharedChild), true, LOT_GRAPHNODE },
|
||||
{ "skipInViewCheck", LVT_BOOL, offsetof(struct GraphNodeObject, skipInViewCheck), true, LOT_NONE },
|
||||
{ "skipInViewCheck", LVT_BOOL, offsetof(struct GraphNodeObject, skipInViewCheck), false, LOT_NONE },
|
||||
{ "skipInterpolationTimestamp", LVT_U32, offsetof(struct GraphNodeObject, skipInterpolationTimestamp), true, LOT_NONE },
|
||||
{ "throwMatrix", LVT_COBJECT_P, offsetof(struct GraphNodeObject, throwMatrix), true, LOT_POINTER },
|
||||
{ "throwMatrixPrev", LVT_COBJECT_P, offsetof(struct GraphNodeObject, throwMatrixPrev), true, LOT_POINTER },
|
||||
|
|
|
@ -307,9 +307,6 @@ char gSmluaConstants[] = ""
|
|||
"COURSE_COUNT = 25\n"
|
||||
"--- @type integer\n"
|
||||
"COURSE_MIN = 1\n"
|
||||
"LOADED_GRAPH_NODES_VANILLA = 256\n"
|
||||
"LOADED_GRAPH_NODES_EXTENDED = 512\n"
|
||||
"MAX_LOADED_GRAPH_NODES = (LOADED_GRAPH_NODES_VANILLA + LOADED_GRAPH_NODES_EXTENDED)\n"
|
||||
"INSTANT_WARP_INDEX_START = 0x00\n"
|
||||
"INSTANT_WARP_INDEX_STOP = 0x04\n"
|
||||
"WARP_TRANSITION_FADE_FROM_COLOR = 0x00\n"
|
||||
|
|
Loading…
Reference in New Issue