You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: region/region-readme.md
-3Lines changed: 0 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,9 +51,6 @@ By default every door node has an implicit strat from the node to itself, for [u
51
51
52
52
Most doors have a closing animation that occurs when entering through them. However, certain doors are immediately closed when the room is loaded. When entering through such a door in direct G-mode, the door will be closed, making it not possible to return back through the door without first exiting G-mode. It would also not be possible to get stuck inside the door shell using an X-ray climb setup.
53
53
54
-
#### spawnAt
55
-
The `spawnAt` property is used to represent situations where Samus enters a room via a node, but can quickly end up at another node without user input. This is only relevant in situations where there are requirements for getting back to the door Samus entered through. When a node has a `null` value for this property, Samus simply spawns at that node as normal.
56
-
57
54
#### utility
58
55
The `utility` property is an array of utility functions available to Samus at a node. Those include saving, map stations, as well as resource refills. Possible utilities are:
Copy file name to clipboardExpand all lines: schema/m3-room.schema.json
-6Lines changed: 0 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1611,12 +1611,6 @@
1611
1611
"default": false,
1612
1612
"description": "Whether this door is immediately closed on entry, rather than having a closing animation."
1613
1613
},
1614
-
"spawnAt": {
1615
-
"type": "integer",
1616
-
"title": "Node to spawn at",
1617
-
"description": "ID of the node at which Samus spawns when entering a room through this node. If this is null, Samus just spawns at the node she entered through",
Copy file name to clipboardExpand all lines: strats.md
+2-6Lines changed: 2 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1535,8 +1535,6 @@ With certain exceptions described below, by default every door node and entrance
1535
1535
1536
1536
This implicit strat can be disabled by setting the node property `"useImplicitComeInNormally": false`.
1537
1537
1538
-
If the node has a `spawnAt` property, then this implicit strat ends at the `spawnAt` node, rather than ending at the door node.
1539
-
1540
1538
### Implicit Come In With Mockball
1541
1539
1542
1540
With certain exceptions described below, by default every horizontal door node has an implicit strat from the node to itself, for entering the room through the door while in a mockball (or speedball). This implicit strat has a `comeInWithMockball` entrance condition. In unheated rooms, it has the following form:
@@ -1579,8 +1577,6 @@ This implicit strat is to cover cases where leaving with a mockball may be desir
1579
1577
1580
1578
This implicit strat can be disabled by setting the node property `"useImplicitComeInWithMockball": false`.
1581
1579
1582
-
If the node has a `spawnAt` property, then this implicit strat is disabled, and should never be marked with `"useImplicitComeInWithMockball": true`.
1583
-
1584
1580
### Implicit Carry G-Mode Back Through
1585
1581
1586
1582
With certain exceptions described below, by default every door node has an implicit strat from the node to itself, for entering the room in direct G-mode through the door and then walking back out through the open doorway while still in G-mode. This implicit strat has a `comeInWithGMode` entrance condition and a `leaveWithGMode` exit condition and is of the following form:
@@ -1608,7 +1604,7 @@ Note that if there are strats from this door node to itself with `"gModeRegainMo
1608
1604
1609
1605
This implicit strat can be disabled by setting the node property `"useImplicitCarryGModeBackThrough": false`.
1610
1606
1611
-
If the node has a `spawnAt` property, or if it has `"isDoorImmediatelyClosed": true`, then this implicit strat is disabled unless the node is explicitly marked as `"useImplicitCarryGModeBackThrough": true`.
1607
+
If the node has `"isDoorImmediatelyClosed": true`, then this implicit strat is disabled unless the node is explicitly marked as `"useImplicitCarryGModeBackThrough": true`.
1612
1608
1613
1609
### Implicit Carry G-Mode Morph Back Through
1614
1610
@@ -1639,7 +1635,7 @@ As with other `comeInWithGMode` strats having `"morphed": true`, it is assumed h
1639
1635
1640
1636
This implicit strat can be disabled by setting the node property `"useImplicitCarryGModeMorphBackThrough": false`.
1641
1637
1642
-
If the node has a `spawnAt` property, or if it has `"isDoorImmediatelyClosed": true`, or if the node is a vertical door in bottom position (leading up), then this implicit strat is disabled unless the node is explicitly marked as `"useImplicitCarryGModeMorphBackThrough": true`. Note that the exception about the node being a door in bottom position differs from unmorphed implicit strats for carrying G-mode back through a door, described in the previous section, which have no such exception.
1638
+
If the node has `"isDoorImmediatelyClosed": true`, or if the node is a vertical door in bottom position (leading up), then this implicit strat is disabled unless the node is explicitly marked as `"useImplicitCarryGModeMorphBackThrough": true`. Note that the exception about the node being a door in bottom position differs from unmorphed implicit strats for carrying G-mode back through a door, described in the previous section, which have no such exception.
0 commit comments