Search/Recent Changes
DBTropes
...it's like TV Tropes, but LINKED DATA!

Dynamic Loading

 Dynamic Loading
type
FeatureClass
 Dynamic Loading
label
Dynamic Loading
 Dynamic Loading
page
DynamicLoading
 Dynamic Loading
comment
In the early days of video games, the entire game could (and indeed had to) fit into memory at the same time. However, as game data grew larger, this became impractical. So game developers found ways of making games that only use a portion of the game's full data at any one time during gameplay, to avoid loading screens.
The necessary outgrowth of this is the fact that a game must swap this data out with other game data as needed. For example, if the player leaves a room, the old room's data has to go away, so that the new room data can be loaded. Therefore, there is a point in time when neither room is fully there; the new data is partially overwriting the old. Without Dynamic Loading, the player would be unable to play the game while loading occurs.
In the days of cartridge-based games, the time to load information was on the order of milliseconds; a blank screen for a couple of frames was sufficient. But data had to be decompressed before being run. While some games actually had load times (a few SNES games for example), as the size of games grew, larger storage was needed. And as is unfortunately the usual case for computers, larger storage is usually slower storage. But at least HDD is faster than optical media, and Solid State Drives are changing the game when it comes to how levels are built and structured in system memory.
If a game designer simply accepts that it will take 5 seconds to load an area's data, you get Loads and Loads of Loading. More reasonable game designers compensate for this with Dynamic Loading, sometimes called "streaming". The ultimate idea is that the player is able to play while it loads data in and out as the player moves and interacts throughout the environment.
There are many techniques used to affect a relatively seamless loading experience. They can be divided into several categories, several of which can be used at once:
Dynamic Loading Corridors
If you have two fairly large areas, and the player needs to move between them, add a smaller third area between them. While the player is in this interim section, the first area can be overwritten with the second.
This has one major concern: what happens if the player happens to reach the other end of the corridor before that area is finished loading? There are several solutions:
Winding Corridors: Make the Dynamic Loading Corridor really long and, importantly, have a snaking bend or two. The player will be unable to get to the other end before the data is ready, and if there are high walls they can't see both ends at the same time (one or both may be missing). May also be a Space-Filling Path.
Speed Bumps - Rather than making the corridor longer, throw stuff at the player for them to clear first. This can be enemies that must be defeated, timed traps, timed doors, vertical movement, and so on. Another common method is to have the player squeeze through a tight space: the slow movement will give the next area time to load in, and the wall itself will mean the player can't see all of the next/previous area.
Dynamic Loading Trot: Globally drop the player's movement speed, so that the player can't get to the other end too fast. This can also double as an example of Expository Gameplay Limitation, depending on the context. It's also occasionally used for in-engine cutscenes so that they have all their assets loading in before the player triggers it.
Limited Sprint: A perhaps more tolerable form of Dynamic Loading Trot. The player character can temporarily move at a faster pace than the streaming can allow, but the pace slows down in the corridor.
Dynamic Loading Fail / Hitbox First: Accept that a speedrunning player may occasionally go too fast for your engine, and load the most important data first as a failsafe. This includes at least the basic geometry, their hitboxes, and low-quality textures. Then, just make sure your corridors are long enough/the player's movement is slow enough that this basic info will be in memory in time. While the player is in the new area, simply allow more geometry and better textures to pop in as needed.
Hard Stop: if all else fails, you'll have to resort to freezing the player. This can be having the character appear to trip over and take a while to get up, or it can be as blunt as freezing the game and adding an emergency loading bar on screen.
Sit and Wait
These techniques have the player wait around in the level itself while part of it is loaded ahead of them, usually behind a door or in an elevator. These can be combined with Dynamic Loading Corridors to make "airlock" rooms that the player has to pass through when going from one area to another. This technique wasn't initially noticed at first, but after a few years players caught on to why they were there and became frustrated at having to sit through them, because doing nothing is the same as if it was a loading screen anyway.
Loading Doors: A door that takes an unusually long time before it opens up. This is often explained in-universe, such as having a long unlocking sequence or the character having to hack the door open. Not so bad if the wait is a second or two, but if it takes ten seconds for a door to open, the player will realize this trope is exactly why these doors take so long. Can also be combined with a Dynamic Loading Corridor so that the previous area can be dumped from memory first.
Elevators: The load is disguised by having the player sit in an elevator (which may or may not actually be moving). Functionally the same as Loading Doors, but with elevator music and maybe some banter between those present in the lift. If you're lucky, the elevator will have a big window so you at least have an interesting view while moving, which sometimes pushes it into the realm of...
Fixed Paths
This method affects the game design more deeply. What you do is fix the player's path, to some degree, so that you know that the player must go from A to B to C in order. In this way, every area is a Dynamic Loading Corridor.
The more you fix the player's path, the more you can be assured that your streaming will work out. And thus the more detail you can throw at players.
There are several degrees of this:
Limited Paths: An apparently wide-open area has only a few relatively narrow paths the player can travel on. This is the root cause of many an Invisible Wall and Insurmountable Waist-High Fence. Racing games are made of this trope, but using tunnels and geography to obscure parts of the world are very common in open-world games of all stripes.
Grind Rails - A quicker form of Limited Paths. The path is well-defined, known in advance, extremely narrow, fixed speed, and often one-way, making for most efficient Dynamic Loading. Permits faster travel, or more detail, as desired. Can also take the form of riding a small craft: if it lacks walls or a roof, it can be combined with Scenic-Tour Level to show off the rest of the level.
Progressive Loading
Rather than try to load everything at once, load only what's actually necessary to play the game, even during gameplay. Depending on the situation, either load everything else that's needed or continue loading only what's necessary. This can help keep the game feeling more responsive at the cost of potentially jarring, but very infrequent, graphical artifacts (which will be nonexistent in well-made games these days). This technique is practically required for open-world games given how, well, open they are, making it impossible to predict in advance where the player will go.
Asset Pop-in: In some games, graphical assets are loaded in their lower quality state first, if they're loaded in at all. Then after the game is done "loading" and the player can interact with it, start loading in higher quality assets and plop them in as necessary. Commonly used in modern open world games. So when you first start off, you might see buildings and characters gradually pop-in or textures looking muddy before sharpening as their higher resolution versions come in.
Partial loading: Some assets can be massive in size by themselves. For example, say you have a giant texture map of the world so you're not relying so much on piecing together multiple textures together. But you can't load this texture map all at once because it's simply too large and there's a good chance that most of it isn't going to be used. So instead of loading the entirety of the texture map, load only the chunks that's needed.
Games with static loading have more obvious loading, but can avert some of the tropes above.
 Dynamic Loading
fetched
2024-02-18T08:30:24Z
 Dynamic Loading
parsed
2024-02-18T08:30:24Z
 Dynamic Loading
processingComment
Dropped link to Castlevania: Not an Item - CAT
 Dynamic Loading
processingComment
Dropped link to ExpansionPack: Not an Item - FEATURE
 Dynamic Loading
processingComment
Dropped link to GameBreakingBug: Not an Item - FEATURE
 Dynamic Loading
processingComment
Dropped link to LoadsAndLoadsOfLoading: Not an Item - FEATURE
 Dynamic Loading
processingComment
Dropped link to MinusWorld: Not an Item - FEATURE
 Dynamic Loading
processingComment
Dropped link to Mook: Not an Item - UNKNOWN
 Dynamic Loading
processingComment
Dropped link to RespawningEnemies: Not an Item - FEATURE
 Dynamic Loading
processingComment
Dropped link to SlowLoadingInternetImage: Not an Item - FEATURE
 Dynamic Loading
processingComment
Dropped link to TabletopGame: Not an Item - FEATURE
 Dynamic Loading
processingComment
Dropped link to TheWitcher3: Not an Item - UNKNOWN
 Dynamic Loading
processingComment
Dropped link to TropeNamer: Not an Item - UNKNOWN
 Dynamic Loading
processingComment
Dropped link to WarpWhistle: Not an Item - FEATURE
 Dynamic Loading
processingUnknown
Mook
 Dynamic Loading
processingUnknown
TropeNamer
 Dynamic Loading
processingUnknown
TheWitcher3
 Dynamic Loading
isPartOf
DBTropes
 Dynamic Loading / int_10b03dcf
type
Dynamic Loading
 Dynamic Loading / int_10b03dcf
comment
Batman: Arkham Asylum uses many of these tricks to keep loading stalls to a minimum. The larger outdoor areas are divided by simpler corridors, doors could open faster or slower depending on how much loading is left to be done for the room on the other side, and in the worst case if Bats runs fast enough in some places he'll outright stall for a second while the game halts to catch back up. He's also forcibly slowed to a stoic walk whenever receiving a radio conversation. This is repeated in Batman: Arkham City; however, with much more of the roaming being done by grapple-hooking between buildings, it becomes rather noticeable when the game freezes for a second as you zip into an unloaded area.
 Dynamic Loading / int_10b03dcf
featureApplicability
1.0
 Dynamic Loading / int_10b03dcf
featureConfidence
1.0
 Batman: Arkham Asylum (Video Game)
hasFeature
Dynamic Loading / int_10b03dcf
 Dynamic Loading / int_11e6bf74
type
Dynamic Loading
 Dynamic Loading / int_11e6bf74
comment
The director of Sonic the Hedgehog CD really wanted time-travel to be instantaneous, but settled for a cutscene to allow time for the entire stage to reload.
 Dynamic Loading / int_11e6bf74
featureApplicability
1.0
 Dynamic Loading / int_11e6bf74
featureConfidence
1.0
 Sonic the Hedgehog CD (Video Game)
hasFeature
Dynamic Loading / int_11e6bf74
 Dynamic Loading / int_11fd6993
type
Dynamic Loading
 Dynamic Loading / int_11fd6993
comment
inFAMOUS did this pretty well, hiding it behind cutscenes.
 Dynamic Loading / int_11fd6993
featureApplicability
1.0
 Dynamic Loading / int_11fd6993
featureConfidence
1.0
 inFAMOUS (Video Game)
hasFeature
Dynamic Loading / int_11fd6993
 Dynamic Loading / int_11fd7982
type
Dynamic Loading
 Dynamic Loading / int_11fd7982
comment
The elevator sequences in the Metroid Prime Trilogy games serve this purpose. The games also have several small corridors that are either twisty, filled with obstacles, or littered with enemies. The idea is to basically slow you down enough so that the next room can be finished loading when you reach the door. Hallways like these exist because if several large rooms were directly connected to each other, the load times would significantly increase and the doors would stay closed longer until the loading was done. Small rooms/halls are used as the bridge point to connect two large rooms together without slowing down the game.
 Dynamic Loading / int_11fd7982
featureApplicability
1.0
 Dynamic Loading / int_11fd7982
featureConfidence
1.0
 Metroid Prime Trilogy (Video Game)
hasFeature
Dynamic Loading / int_11fd7982
 Dynamic Loading / int_12e3da65
type
Dynamic Loading
 Dynamic Loading / int_12e3da65
comment
Castlevania: Lords of Shadow, which is a God of War clone rather than a metroidvania, has Patrick Stewart narrate as if a silent observer while a level loaded. You can end this prematurely if the level finishes loading before he's done, but why would you?
 Dynamic Loading / int_12e3da65
featureApplicability
1.0
 Dynamic Loading / int_12e3da65
featureConfidence
1.0
 Castlevania: Lords of Shadow (Video Game)
hasFeature
Dynamic Loading / int_12e3da65
 Dynamic Loading / int_14d341dc
type
Dynamic Loading
 Dynamic Loading / int_14d341dc
comment
NPCs in Star Trek Online sometimes don't finish loading by the time you enter a zone. While most of the time they simply fade in a half-second later, sometimes you'll be treated to the amusing sight of the NPCs beaming into the stage, complete with audiovisual transporter cues. It makes you wonder what they were up to before you arrived.
 Dynamic Loading / int_14d341dc
featureApplicability
1.0
 Dynamic Loading / int_14d341dc
featureConfidence
1.0
 Star Trek Online (Video Game)
hasFeature
Dynamic Loading / int_14d341dc
 Dynamic Loading / int_1973b10a
type
Dynamic Loading
 Dynamic Loading / int_1973b10a
comment
For later games like Sonic Unleashed and Sonic Generations, there is a specific engine designed to load data quickly (the Hedgehog Engine), using "triggers" that load sections of the environment seamlessly as you run towards the goal. Speedrunners that know how to go past entire sections of the level might skip these, meaning most of the level will be invisible until they go past the next trigger.
 Dynamic Loading / int_1973b10a
featureApplicability
1.0
 Dynamic Loading / int_1973b10a
featureConfidence
1.0
 Sonic Unleashed (Video Game)
hasFeature
Dynamic Loading / int_1973b10a
 Dynamic Loading / int_1a76a111
type
Dynamic Loading
 Dynamic Loading / int_1a76a111
comment
Crash Bandicoot
The original Crash Bandicoot (1996) was ground-breaking at the time for how it dynamically loaded chunks of a level into memory as you moved through it, making it Progressive Loading. Importantly, load times were only five seconds long because the console would only have to load the start of a level, compared to 30-40 for most other games to load the whole level at once (this also meant that they could vastly exceed the size of the PlayStation 1's RAM, because not all of it would be loaded in at once). This feat was so impressive that other developers thought they hacked the console or were given secret development tools from Sony.
Crash Team Racing uses the Winding Corridor variant between hub areas. For the most part it's pretty seamless, but there are a couple of places where the textures in the corridor change slightly once the next hub loads, and in at least one spot it's possible to park with your kart angled in such a way that you're able to see that the corridor you're heading down has nothing at the other end.
Crash Twinsanity, being the first free-roaming game in the series, was highly succeptible to Dynamic Loading Fail - usually, levels would load during travel between linear tunnels, but if the player moves too fast for the game to load itself properly, Crash simply falls on his ass in a time-consuming animation if the player crosses the border too early...and he'll keep doing it until the level loads.
 Dynamic Loading / int_1a76a111
featureApplicability
1.0
 Dynamic Loading / int_1a76a111
featureConfidence
1.0
 Crash Bandicoot (Video Game)
hasFeature
Dynamic Loading / int_1a76a111
 Dynamic Loading / int_1cc11947
type
Dynamic Loading
 Dynamic Loading / int_1cc11947
comment
Descent used a variant of the "Winding Corridor": whenever you enter a given room, the game immediately pre-loads all adjacent rooms. The result is completely seamless gameplay, even on the original DOS computers the game was made for. Although it does still have to give you a loading screen at the very beginning of each level, for the opening room.
 Dynamic Loading / int_1cc11947
featureApplicability
1.0
 Dynamic Loading / int_1cc11947
featureConfidence
1.0
 Descent (Video Game)
hasFeature
Dynamic Loading / int_1cc11947
 Dynamic Loading / int_1fc3ec4d
type
Dynamic Loading
 Dynamic Loading / int_1fc3ec4d
comment
Rock Band 3 covers up loading time with thematic cutscenes featuring the band's active characters. These include the group setting up instruments and stages when loading a song, a character taking a taxi to a barber shop when activating the character editor, digging through old records when loading the music store, or meeting up in a hideout when in the Career menu.
 Dynamic Loading / int_1fc3ec4d
featureApplicability
1.0
 Dynamic Loading / int_1fc3ec4d
featureConfidence
1.0
 Rock Band (Video Game)
hasFeature
Dynamic Loading / int_1fc3ec4d
 Dynamic Loading / int_20e0ce9f
type
Dynamic Loading
 Dynamic Loading / int_20e0ce9f
comment
Crash Team Racing uses the Winding Corridor variant between hub areas. For the most part it's pretty seamless, but there are a couple of places where the textures in the corridor change slightly once the next hub loads, and in at least one spot it's possible to park with your kart angled in such a way that you're able to see that the corridor you're heading down has nothing at the other end.
 Dynamic Loading / int_20e0ce9f
featureApplicability
1.0
 Dynamic Loading / int_20e0ce9f
featureConfidence
1.0
 Crash Team Racing (Video Game)
hasFeature
Dynamic Loading / int_20e0ce9f
 Dynamic Loading / int_20e8e9bd
type
Dynamic Loading
 Dynamic Loading / int_20e8e9bd
comment
In the first level of Sonic 3 & Knuckles, after running through a hollowed-out tree, you encounter the first mini-boss who proceeds to firebomb the entire jungle area, with a wall of fire covering the screen. That wall of fire is actually the game loading what is technically the second part (Act, if you will) of the level, though the game tells you you're still in the first part.
 Dynamic Loading / int_20e8e9bd
featureApplicability
1.0
 Dynamic Loading / int_20e8e9bd
featureConfidence
1.0
 Sonic 3 & Knuckles (Video Game)
hasFeature
Dynamic Loading / int_20e8e9bd
 Dynamic Loading / int_2319cc69
type
Dynamic Loading
 Dynamic Loading / int_2319cc69
comment
Ori and the Will of the Wisps has loading corridors (and sometimes cutscenes) between major map regions, and momentarily locks the screen scrolling if the player moves too fast for the loading to keep up. When fast-travelling via the Spirit Wells, the destination area is loaded during the warp cutscene. The Fade to White from said sequence may also be used in the event of Dynamic Loading Fail.
 Dynamic Loading / int_2319cc69
featureApplicability
1.0
 Dynamic Loading / int_2319cc69
featureConfidence
1.0
 Ori and the Will of the Wisps (Video Game)
hasFeature
Dynamic Loading / int_2319cc69
 Dynamic Loading / int_24d953d0
type
Dynamic Loading
 Dynamic Loading / int_24d953d0
comment
The first Metroid game has corridors before bosses to aid in loading the boss data before it starts.
 Dynamic Loading / int_24d953d0
featureApplicability
1.0
 Dynamic Loading / int_24d953d0
featureConfidence
1.0
 Metroid (Video Game)
hasFeature
Dynamic Loading / int_24d953d0
 Dynamic Loading / int_27b84429
type
Dynamic Loading
 Dynamic Loading / int_27b84429
comment
The Last of Us used Dynamic Loading Trot; sometimes sprinting would have Joel tear across the area, while other times holding L2 wouldn't even make him jog. The game also got a lot of mileage out of unskippable in-engine cutscenes. Loading only really comes from dying, and even then it's not too long.
 Dynamic Loading / int_27b84429
featureApplicability
1.0
 Dynamic Loading / int_27b84429
featureConfidence
1.0
 The Last of Us (Video Game)
hasFeature
Dynamic Loading / int_27b84429
 Dynamic Loading / int_291e9857
type
Dynamic Loading
 Dynamic Loading / int_291e9857
comment
The Dark Souls series, its predecessor Demon's Souls, and its goth cousin Bloodborne all feature large, sprawling levels, some interconnecting directly through unusual paths. Its favoured method of dynamic loading is extremely slow-to-open doors. This not only helps buy time for loading the next level, it can also trap the player while the ravenous horde of monsters approaches.
 Dynamic Loading / int_291e9857
featureApplicability
1.0
 Dynamic Loading / int_291e9857
featureConfidence
1.0
 Dark Souls (Video Game)
hasFeature
Dynamic Loading / int_291e9857
 Dynamic Loading / int_2d8bd7b6
type
Dynamic Loading
 Dynamic Loading / int_2d8bd7b6
comment
NeonXSZ cuts down on the time spent in the static loading screen by having the level itself Fade In and letting the player loose while the game gets populated with friendly and hostile NPCs.
 Dynamic Loading / int_2d8bd7b6
featureApplicability
1.0
 Dynamic Loading / int_2d8bd7b6
featureConfidence
1.0
 NeonXSZ (Video Game)
hasFeature
Dynamic Loading / int_2d8bd7b6
 Dynamic Loading / int_2d940749
type
Dynamic Loading
 Dynamic Loading / int_2d940749
comment
Modern beatmania IIDX games let you fill time during the song loading by giving you the chance to adjust your Hi-Speed and visibility options. You can adjust them in mid-song too, but you want to make these adjustments before the song begins, as you can't pause the game. If Hell Charge Notes are present in the chart you've chosen, you'll be alerted of them and will be given a brief demonstration of how they work. If you're still adjusting your options when the song is loaded, the game will give you a little extra time, or as much time as you need if you're playing consumer versions.
 Dynamic Loading / int_2d940749
featureApplicability
1.0
 Dynamic Loading / int_2d940749
featureConfidence
1.0
 beatmania (Video Game)
hasFeature
Dynamic Loading / int_2d940749
 Dynamic Loading / int_3038d75c
type
Dynamic Loading
 Dynamic Loading / int_3038d75c
comment
Diablo II has so called "Black walls" in multiplayer, but they only appear if there is lag. Without lag, the loading happens fast enough that you will practically never notice it.
 Dynamic Loading / int_3038d75c
featureApplicability
1.0
 Dynamic Loading / int_3038d75c
featureConfidence
1.0
 Diablo II (Video Game)
hasFeature
Dynamic Loading / int_3038d75c
 Dynamic Loading / int_30f32521
type
Dynamic Loading
 Dynamic Loading / int_30f32521
comment
Comes in two flavors in Darksiders. The named (and large) locations are connected by long, winding areas, with some enemies, simple puzzles and items to mask their true purpose, and sometimes manage to be interesting places on their own. You can also use Serpent Tunnels to teleport between locations... but it forces you to walk through a series of featureless platforms suspended in a void, essentially an interactive progress bar. In both cases, the game opts for a momentary freeze, if the player moves too fast.
 Dynamic Loading / int_30f32521
featureApplicability
1.0
 Dynamic Loading / int_30f32521
featureConfidence
1.0
 Darksiders (Video Game)
hasFeature
Dynamic Loading / int_30f32521
 Dynamic Loading / int_310b3174
type
Dynamic Loading
 Dynamic Loading / int_310b3174
comment
Beyond the initial loading screen, Operation Flashpoint and its successor the ARMA series all exhibit near-seamless dynamic loading - on maps larger than those found in most open-world RPGs.
 Dynamic Loading / int_310b3174
featureApplicability
1.0
 Dynamic Loading / int_310b3174
featureConfidence
1.0
 Operation Flashpoint (Video Game)
hasFeature
Dynamic Loading / int_310b3174
 Dynamic Loading / int_31e1eca3
type
Dynamic Loading
 Dynamic Loading / int_31e1eca3
comment
Starting in Pokémon Diamond and Pearl, Pokémon games store the full map as a grid of 32x32 sub-maps, and in addition to the sub-map the one the player character is in, it attempts to keep the adjacent ones loaded (similar to the Luigi's Mansion example). This can result in Dynamic Loading Fail (a.k.a."Tweaking") if the player rides a bike at top speed then makes a sudden 90-degree turn so as to trigger a load immediately before turning and another load immediately after the turn.note For example, the player could start in a spot where moving one tile east would trigger a load, ride north far enough to trigger a different load, then turn east at top speed immediately after the first load starts. This technique rendered the guardhouses unnecessary except when loading towns, which sometimes had unique textures that needed to be loaded.
 Dynamic Loading / int_31e1eca3
featureApplicability
1.0
 Dynamic Loading / int_31e1eca3
featureConfidence
1.0
 Pokémon Diamond and Pearl (Video Game)
hasFeature
Dynamic Loading / int_31e1eca3
 Dynamic Loading / int_3271b543
type
Dynamic Loading
 Dynamic Loading / int_3271b543
comment
Burnout Paradise uses dynamic loading, very noticeable when choosing a car at the junkyard (whenever you select a car, an off-screen crane drops it on the road, about 10 seconds after you asked for it).
 Dynamic Loading / int_3271b543
featureApplicability
1.0
 Dynamic Loading / int_3271b543
featureConfidence
1.0
 Burnout Paradise (Video Game)
hasFeature
Dynamic Loading / int_3271b543
 Dynamic Loading / int_39b7671e
type
Dynamic Loading
 Dynamic Loading / int_39b7671e
comment
Metroid: Other M also uses the above examples as well. Elevator sequences help hide loading for the next area and enemies fill corridors to delay the player so the next area will be ready. However, people who swiftly bypass enemies or blaze through the area with the Speed Booster may find the door not opening right away and the game will literally throw up a "now loading" message on screen until the data is done loading. Thankfully, those are very brief. Other M also has to load everything when you start a saved game. It disguises the loading time by giving a recap of what happened previously in the game in the form of a text scroll. Once the game is ready to start, you can skip the summary if it's still playing. The game also used literal speed bumps—little ledges Samus vaults automatically to prevent the player from using the speed booster everywhere.
 Dynamic Loading / int_39b7671e
featureApplicability
1.0
 Dynamic Loading / int_39b7671e
featureConfidence
1.0
 Metroid: Other M (Video Game)
hasFeature
Dynamic Loading / int_39b7671e
 Dynamic Loading / int_39f52c4a
type
Dynamic Loading
 Dynamic Loading / int_39f52c4a
comment
Crash Twinsanity, being the first free-roaming game in the series, was highly succeptible to Dynamic Loading Fail - usually, levels would load during travel between linear tunnels, but if the player moves too fast for the game to load itself properly, Crash simply falls on his ass in a time-consuming animation if the player crosses the border too early...and he'll keep doing it until the level loads.
 Dynamic Loading / int_39f52c4a
featureApplicability
1.0
 Dynamic Loading / int_39f52c4a
featureConfidence
1.0
 Crash Twinsanity (Video Game)
hasFeature
Dynamic Loading / int_39f52c4a
 Dynamic Loading / int_3caeeb6f
type
Dynamic Loading
 Dynamic Loading / int_3caeeb6f
comment
SimCity 4 only fully loads the part of the map where the camera is focused on in order to reduce memory usage. If the camera jumps to another part of the map or scrolls across the map too quickly, the loaded data at the first spot is purged while the area where the camera is currently focused on is loaded. Presumably, to avoid a crash due to load failure, the game always renders the ground first before loading any buildings and textures a la an old JPEG image, starting with a low-resolution version of the buildings and structures and then slowly adding full detail over time. In this way, even the largest cities can be loaded and played on a mid-end computer as long as the appropriate settings were adjusted. In extreme cases, the game may also default to preventing the player from using the highest zoom level. SimCity 4's dynamic loading is least obvious when using the U-Drive-It feature at maximum zoom level.
 Dynamic Loading / int_3caeeb6f
featureApplicability
1.0
 Dynamic Loading / int_3caeeb6f
featureConfidence
1.0
 SimCity (Video Game)
hasFeature
Dynamic Loading / int_3caeeb6f
 Dynamic Loading / int_3f9e415
type
Dynamic Loading
 Dynamic Loading / int_3f9e415
comment
Both of the Saints Row games have a massive case of Dynamic Loading Fail, where you will drive into an unloaded area in a car, and you lose all control over the car/your character until the areas load (if they ever do). There's even a song about the broken loading.
 Dynamic Loading / int_3f9e415
featureApplicability
1.0
 Dynamic Loading / int_3f9e415
featureConfidence
1.0
 Saints Row (Video Game)
hasFeature
Dynamic Loading / int_3f9e415
 Dynamic Loading / int_42eefdeb
type
Dynamic Loading
 Dynamic Loading / int_42eefdeb
comment
Boss rooms are preceded by loading corridors in Smash TV for the NES.
 Dynamic Loading / int_42eefdeb
featureApplicability
1.0
 Dynamic Loading / int_42eefdeb
featureConfidence
1.0
 Smash TV (Video Game)
hasFeature
Dynamic Loading / int_42eefdeb
 Dynamic Loading / int_43f52aa9
type
Dynamic Loading
 Dynamic Loading / int_43f52aa9
comment
The Elder Scrolls IV: Oblivion uses Dynamic Loading for running around in outdoor areas. The 360 version has a bad case of Dynamic loading Fail if you move too fast.
You still get a loading screen when moving from one area to another in any other case (entering/leaving dungeons or cities, fast traveling, etc). If you're on a PC with enough memory, and the game is configured to use it, recently visited areas will be kept in memory (as long as there's enough of it), and returning to them will often skip the loading screen.
If you max-out your athletics, and you're traveling in a particular direction (so you aren't hitting the dynamic loading areas edge-on but "cornering" them), it's possible to get a loading screen in Oblivion's wilderness, even on PC. Just unlikely.
Every Bethesda game across both the Elder Scrolls and Fallout franchises has used Dynamic Loading in their exterior open world areas. The open world maps are broken up into distinct "cells", which are loaded in a radius around the player as he approaches them and then unloaded when he moves further away, with views of areas outside this cell radius being taken by basic terrain textures and paper doll graphics that require minimum processing. Interestingly, the radius of cells loaded around the player can be modified in most games' configuration files, though doing so will most likely introduce Game Breaking Bugs, as cutscenes or other events that trigger when the cell is loaded near the player will instead trigger upon loading when the player is much farther away.
 Dynamic Loading / int_43f52aa9
featureApplicability
1.0
 Dynamic Loading / int_43f52aa9
featureConfidence
1.0
 The Elder Scrolls IV: Oblivion (Video Game)
hasFeature
Dynamic Loading / int_43f52aa9
 Dynamic Loading / int_4895f82
type
Dynamic Loading
 Dynamic Loading / int_4895f82
comment
An impressive feat for a fully 3D MMORPG first released in 1999, Asheron's Call does all of its loading transparently. Travelling via portal is the only loading screen you'll see in this game, and even the fact that it IS a loading screen isn't obvious. Simply running across the landscape, the content streams from the hard drive and servers as it's needed. Keep in mind this game was designed originally to run comfortably on dial up.
 Dynamic Loading / int_4895f82
featureApplicability
1.0
 Dynamic Loading / int_4895f82
featureConfidence
1.0
 Asheron's Call (Video Game)
hasFeature
Dynamic Loading / int_4895f82
 Dynamic Loading / int_4997726d
type
Dynamic Loading
 Dynamic Loading / int_4997726d
comment
Castlevania: Lords of Shadow 2, which does not have Stewart's narration in the same way, makes use of the Speed Bumps variant: a few hallways filled with lava have platforms that slide into place as the next area loads (with a dose of Dynamic Loading Trot), you use various objects to close the door behind you and 'decontaminate' or otherwise animate the environment before the door in front of you opens, and more Dynamic Loading Trot as you transition from castle to city and back.
 Dynamic Loading / int_4997726d
featureApplicability
1.0
 Dynamic Loading / int_4997726d
featureConfidence
1.0
 Castlevania: Lords of Shadow 2 (Video Game)
hasFeature
Dynamic Loading / int_4997726d
 Dynamic Loading / int_49a87cb3
type
Dynamic Loading
 Dynamic Loading / int_49a87cb3
comment
Final Fantasy VII was particularly sneaky about its load times. When entering a battle, there is a Fight Woosh animation that takes up a few seconds, and then when the battle starts, the camera begins focused on only one side of the fight, giving the game a couple more seconds to load the other side's models. Even the "charging up to use magic" animation is taken advantage of to allow the game time to load whatever spell was being cast.
 Dynamic Loading / int_49a87cb3
featureApplicability
1.0
 Dynamic Loading / int_49a87cb3
featureConfidence
1.0
 Final Fantasy VII (Video Game)
hasFeature
Dynamic Loading / int_49a87cb3
 Dynamic Loading / int_49a88435
type
Dynamic Loading
 Dynamic Loading / int_49a88435
comment
Final Fantasy XII has a variant of the Unreal Engine 3 Dynamic Loading Fail. After you enter an area, Non Player Characters suddenly pop into existence as they finish loading. In busier areas this can take 10-15 seconds.
 Dynamic Loading / int_49a88435
featureApplicability
1.0
 Dynamic Loading / int_49a88435
featureConfidence
1.0
 Final Fantasy XII (Video Game)
hasFeature
Dynamic Loading / int_49a88435
 Dynamic Loading / int_49ad83ee
type
Dynamic Loading
 Dynamic Loading / int_49ad83ee
comment
World of Warcraft extends this to all characters, making it possible to be killed by a player character whose model has not finished loading yet. Also, flying mounts are too fast for the Dynamic Loading to keep up in certain situations. The end result is the PC falling through the yet-unloaded ground and plummeting to his death.
The pre-Cataclysm patch applied Dynamic Loading to the entire game. One can theoretically start playing after downloading just ~300 MB of the 23 GB game, but any form of fast travel is likely to cause a Dynamic Loading Failure.
 Dynamic Loading / int_49ad83ee
featureApplicability
1.0
 Dynamic Loading / int_49ad83ee
featureConfidence
1.0
 World of Warcraft (Video Game)
hasFeature
Dynamic Loading / int_49ad83ee
 Dynamic Loading / int_4a2b34ad
type
Dynamic Loading
 Dynamic Loading / int_4a2b34ad
comment
Star Fox Adventures is liberal in its use of winding corridors, one of which is actually a maze, and vertical-movement speed bumps. A few of them create a revolving-door type mechanism which provides the player a shorter walk at the expense of having to proceed all the way through.
 Dynamic Loading / int_4a2b34ad
featureApplicability
1.0
 Dynamic Loading / int_4a2b34ad
featureConfidence
1.0
 Star Fox Adventures (Video Game)
hasFeature
Dynamic Loading / int_4a2b34ad
 Dynamic Loading / int_5425ce75
type
Dynamic Loading
 Dynamic Loading / int_5425ce75
comment
Grand Theft Auto (from Grand Theft Auto III onwards).
Chinatown Wars for Nintendo DS has no loading screens. Going too fast can cause you to arrive in a gray, featureless place until the landscape loads, though - this could be the result of the DS not having enough time to decompress the graphics.
Due to the disc only nature of consoles, it was not uncommon to see loading screens when passing into new zones. The PC versions of all GTA games avoided this — mostly due to having it installed on a hard drive — although occasionally a loading screen may flash on the screen unreadably fast anyway (this happens in Vice City when you go from one island to the next and is probably a glitch).
Sometimes you could simply sink under the road or fall into nothingness due to a Dynamic Loading Fail, which is more common when using modifications or running games on newer consoles.
Grand Theft Auto: San Andreas streamed the entire game world on the fly, which was several times larger than Liberty City or Vice City. In doing this it put a lot of strain on the PS2's already fragile DVD laser and was the death of many a console.
Grand Theft Auto IV, at the time of its PC release, had a bug where dual-core systems would hang the disk thread after a period of time, leaving you driving on invisible roads above a blurry low LoD ocean. This was fixed relatively quickly in a patch.
 Dynamic Loading / int_5425ce75
featureApplicability
1.0
 Dynamic Loading / int_5425ce75
featureConfidence
1.0
 Grand Theft Auto (Video Game)
hasFeature
Dynamic Loading / int_5425ce75
 Dynamic Loading / int_56fa0ea4
type
Dynamic Loading
 Dynamic Loading / int_56fa0ea4
comment
Civilization had a text-based description of the creation of the world play while the game world was loading. Civilization IV has a similar sequence, with narration by Leonard Nimoy.
You could not skip the intro in the original game on older machines.
 Dynamic Loading / int_56fa0ea4
featureApplicability
1.0
 Dynamic Loading / int_56fa0ea4
featureConfidence
1.0
 Civilization (Video Game)
hasFeature
Dynamic Loading / int_56fa0ea4
 Dynamic Loading / int_59da62aa
type
Dynamic Loading
 Dynamic Loading / int_59da62aa
comment
Fallout: New Vegas divides its main overworld into cells connected by Limited Paths, hence the large number of insurmountable hills. A few indoor areas are also dynamically loaded (i.e. no Loading Screen, but you have to wait when opening a certain door, etc.). When Dynamic Loading Fail occurs, low-res or glitched textures result, and objects can be seen "popping in" in the distance.
 Dynamic Loading / int_59da62aa
featureApplicability
1.0
 Dynamic Loading / int_59da62aa
featureConfidence
1.0
 Fallout: New Vegas (Video Game)
hasFeature
Dynamic Loading / int_59da62aa
 Dynamic Loading / int_5b1971e2
type
Dynamic Loading
 Dynamic Loading / int_5b1971e2
comment
GoldenEye (Wii) uses a combination of Fixed Paths, Winding Corridors, Elevators, and Speed Bumps.
 Dynamic Loading / int_5b1971e2
featureApplicability
1.0
 Dynamic Loading / int_5b1971e2
featureConfidence
1.0
 GoldenEye Wii (Video Game)
hasFeature
Dynamic Loading / int_5b1971e2
 Dynamic Loading / int_5e91c7d
type
Dynamic Loading
 Dynamic Loading / int_5e91c7d
comment
Resident Evil 4 does this. Listen closely to your console while you're playing, say, the end of the village fight. The game takes the last few seconds of the village fight (triggered by killing x number of enemies) to load the next in-game cutscene and the following Ganado-less village. This means that the game jumps straight to the cutscene after killing all the necessary villagers. Another moment that comes to mind is in the El Gigante fight where his death cutscene is being loaded off the disc while you're fighting him.
Resident Evil 5 returned to conventional loading screens between sub-chapters.
 Dynamic Loading / int_5e91c7d
featureApplicability
1.0
 Dynamic Loading / int_5e91c7d
featureConfidence
1.0
 Resident Evil 4 (Video Game)
hasFeature
Dynamic Loading / int_5e91c7d
 Dynamic Loading / int_5e91c7e
type
Dynamic Loading
 Dynamic Loading / int_5e91c7e
comment
Resident Evil 5 returned to conventional loading screens between sub-chapters.
 Dynamic Loading / int_5e91c7e
featureApplicability
1.0
 Dynamic Loading / int_5e91c7e
featureConfidence
1.0
 Resident Evil 5 (Video Game)
hasFeature
Dynamic Loading / int_5e91c7e
 Dynamic Loading / int_5f6f0132
type
Dynamic Loading
 Dynamic Loading / int_5f6f0132
comment
In the PSP port of Disgaea 2, attempting to utilize any spells requires the game to load it from the disc. It tricks you by the players character often doing a wind-up animation, with the monster units using the sprite animation from launching spells to indicate they are prepping to attack, or with the human units simply spinning their weapon around like they are winding up. After a while, though, a player will realize it is loading since the load time for the attacks varies between attacks even for the same special.
 Dynamic Loading / int_5f6f0132
featureApplicability
1.0
 Dynamic Loading / int_5f6f0132
featureConfidence
1.0
 Disgaea 2: Cursed Memories (Video Game)
hasFeature
Dynamic Loading / int_5f6f0132
 Dynamic Loading / int_61de95d6
type
Dynamic Loading
 Dynamic Loading / int_61de95d6
comment
In both Freelancer and the X-Universe series, star systems were connected by hyperspace gates so a wormhole animation played while loading.
 Dynamic Loading / int_61de95d6
featureApplicability
1.0
 Dynamic Loading / int_61de95d6
featureConfidence
1.0
 Freelancer (Video Game)
hasFeature
Dynamic Loading / int_61de95d6
 Dynamic Loading / int_6c1d09b4
type
Dynamic Loading
 Dynamic Loading / int_6c1d09b4
comment
Fallout 4, when taking an elevator between areas that would otherwise require a Loading Screen, utilizes dynamic loading in its place. The larger the cell being entered, the longer the elevator ride, especially when going from interior to exterior.
 Dynamic Loading / int_6c1d09b4
featureApplicability
1.0
 Dynamic Loading / int_6c1d09b4
featureConfidence
1.0
 Fallout 4 (Video Game)
hasFeature
Dynamic Loading / int_6c1d09b4
 Dynamic Loading / int_6c47db4e
type
Dynamic Loading
 Dynamic Loading / int_6c47db4e
comment
The PSP iterations of the Dynasty Warriors series uses dynamic loading to get pass the fact that normally there are usually hundreds of AI controlled units loaded on a single map at one time. Instead of loading the entire battlefield, the game loads only 1 area at a time. You conquer each area and eventually conquer the entire battlefield.
 Dynamic Loading / int_6c47db4e
featureApplicability
1.0
 Dynamic Loading / int_6c47db4e
featureConfidence
1.0
 Dynasty Warriors (Video Game)
hasFeature
Dynamic Loading / int_6c47db4e
 Dynamic Loading / int_6d8311c4
type
Dynamic Loading
 Dynamic Loading / int_6d8311c4
comment
Pokémon Gold, Silver and Crystal featured the guardhouses more frequently. The guardhouses from this generation generally had no other purposes.
 Dynamic Loading / int_6d8311c4
featureApplicability
1.0
 Dynamic Loading / int_6d8311c4
featureConfidence
1.0
 Pokémon Gold and Silver (Video Game)
hasFeature
Dynamic Loading / int_6d8311c4
 Dynamic Loading / int_6fa2c385
type
Dynamic Loading
 Dynamic Loading / int_6fa2c385
comment
Max Payne 3 replaces the game's famous graphic novel cutscenes with real-time cutscenes, but the game now transitions smoothly between cutscenes and gameplay with no noticeable break (often many times per level to add a more cinematic flavor). Because the cutscenes disguise loading screens, attempts to skip them are denied until the level has finished loading.
 Dynamic Loading / int_6fa2c385
featureApplicability
1.0
 Dynamic Loading / int_6fa2c385
featureConfidence
1.0
 Max Payne 3 (Video Game)
hasFeature
Dynamic Loading / int_6fa2c385
 Dynamic Loading / int_702a974
type
Dynamic Loading
 Dynamic Loading / int_702a974
comment
Shadow of the Colossus, uses Dynamic Loading almost exclusively. The game renders distant regions with less amount of details and additionally uses video effects to obscure imperfections. The data is loaded seamlessly as the player progresses through the world. It may sometimes lead to very minor Dynamic Loading Fails, especially when your console has problems with reading the disc.
Dynamic Loading Corridors show up in the form of narrow canyons.
A lot of (the horse) Agro's more aggravating qualities, such as slow acceleration and sheering off to one side, may not be for realism so much as to slow the player down while data loads in the background.
 Dynamic Loading / int_702a974
featureApplicability
1.0
 Dynamic Loading / int_702a974
featureConfidence
1.0
 Shadow of the Colossus (Video Game)
hasFeature
Dynamic Loading / int_702a974
 Dynamic Loading / int_72a1ac51
type
Dynamic Loading
 Dynamic Loading / int_72a1ac51
comment
Grand Theft Auto: San Andreas streamed the entire game world on the fly, which was several times larger than Liberty City or Vice City. In doing this it put a lot of strain on the PS2's already fragile DVD laser and was the death of many a console.
 Dynamic Loading / int_72a1ac51
featureApplicability
1.0
 Dynamic Loading / int_72a1ac51
featureConfidence
1.0
 Grand Theft Auto: San Andreas (Video Game)
hasFeature
Dynamic Loading / int_72a1ac51
 Dynamic Loading / int_73b74949
type
Dynamic Loading
 Dynamic Loading / int_73b74949
comment
Borderlands uses a loading screen when the player moves to a new region and when the area is loaded, there is usually a case of texture loading failure since the game renders mostly the models and props first while using a low resolution texture for the models until everything is loaded. Thankfully this is extremely brief. And when loading a game or using New U Stations to warp, you are treated to a "warping sequence", which is masquerade for the texture loading.
 Dynamic Loading / int_73b74949
featureApplicability
1.0
 Dynamic Loading / int_73b74949
featureConfidence
1.0
 Borderlands (Video Game)
hasFeature
Dynamic Loading / int_73b74949
 Dynamic Loading / int_73cdb697
type
Dynamic Loading
 Dynamic Loading / int_73cdb697
comment
The original Resident Evil and all official sequels until 4 used door opening animation to cover for loading. Distinct from a Loading screen as it represented in-game activity.
PC versions of the first three games let you skip these. The DS version of the original game, Deadly Silence, also lets you bypass the door sequences.
Resident Evil 3: Nemesis has the game use doors to load the next area just like the previous 2 games before it. However, it may have been possible for the game to have less loading screens due to one event where Nemsis can bash down a door to reach you, allowing you to transition between two rooms without a loading screen whereas you were forced to have a loading screen beforehand.
The GameCube remake of the first Resident Evil had rooms load instantly, so the door animations were removed in early development versions. However, focus groups thought that not having these screens was disconcerting, so the animations were put back in (even though they now mask nothing.) Some vestige of this can be seen when Hunters bash down doors to get to your character when they return to the mansion - once they do, going between the rooms where the door was results in an instant camera shift with no loading.
Code Veronica sometimes lengthened the door opening sequences for suspense.
 Dynamic Loading / int_73cdb697
featureApplicability
1.0
 Dynamic Loading / int_73cdb697
featureConfidence
1.0
 ResidentEvil
hasFeature
Dynamic Loading / int_73cdb697
 Dynamic Loading / int_74f7210c
type
Dynamic Loading
 Dynamic Loading / int_74f7210c
comment
The Legend of Zelda:
The Legend of Zelda has a brief pause when you move to the next room or area, which is used to load the next area plus whatever enemies that are there. Sometimes the enemy data takes longer to load than normal and causes the sprite to appear as a puff of smoke until the sprite is fully loaded. This can also happens to the NPCs you meet in caves and you can't move until they are loaded since you are usually forced to wait for their text box to finish.
The Legend of Zelda: Ocarina of Time sometimes makes you walk along short "hallways" between two rooms (only if there is no door to separate the rooms) so the next room will load if you pass a certain point in the hallway. You can get to a room without it loading it by using the levitation glitch, when you make it to the room it will be missing everything that wasn't visible in the other room. Try levitating from the main area in the Kokiri Forest to the Great Deku Tree's area and you'll be surprised by what you find... or don't find.
In The Legend of Zelda: The Wind Waker islands load while you are sailing towards them. In fact, the developers set the sailing speed as seen in the Gamecube version in order to ensure the islands do get loaded. If you somehow managed to beat out the dynamic loading, the game irised-out and reset you in your boat in the loaded quadrant without a word. With the improved hardware of the Wii U, loading has improved to the point of being able to load the entire Great Sea at once, and there is a new Swift Sail for the boat obtainable in the game.
The Legend of Zelda: Skyward Sword uses small cutscenes to mask loading times in several areas. Dungeons and other parts of the game have doors separating rooms which take ~2 seconds for Link to open while the game loads the next room. Additionally, a cutscene of Link skydiving gives the game time to load the surface world.
The Legend of Zelda: Tears of the Kingdom's deep chasms are an obvious way to hide load times when journeying into the depths. However, you can break this by diving head-first the whole way through, making the game freeze for a bit so it can load properly.
 Dynamic Loading / int_74f7210c
featureApplicability
1.0
 Dynamic Loading / int_74f7210c
featureConfidence
1.0
 The Legend of Zelda (Franchise)
hasFeature
Dynamic Loading / int_74f7210c
 Dynamic Loading / int_755b343f
type
Dynamic Loading
 Dynamic Loading / int_755b343f
comment
In Halo, some parts of the level load as you walk along. Shown by Loading... done for about half a second each time a part of the level loads - it's almost seamless.
The first game has a lot of Winding Corridors, eg on "Assault on the Control Room" and "The Library". Limited Paths (sometimes involving "kill barriers") and Space Filling Paths are also often used, as well as Loading Barriers, elevator action sequences, and Speed Bumps (airlocks, timed doors, Hold the Line sequences). Sequence Breaking can lead to Dynamic Loading Fail.
Future titles would have maps load in the menus, so you could tweak the settings while the game loads. Or just sit there, and listen to the kick ass menu music.
 Dynamic Loading / int_755b343f
featureApplicability
1.0
 Dynamic Loading / int_755b343f
featureConfidence
1.0
 Halo (Franchise)
hasFeature
Dynamic Loading / int_755b343f
 Dynamic Loading / int_755d59cb
type
Dynamic Loading
 Dynamic Loading / int_755d59cb
comment
This approach was repeated verbatim in God of War Ragnarök, due to it being one of the last games released on the PS4.
 Dynamic Loading / int_755d59cb
featureApplicability
1.0
 Dynamic Loading / int_755d59cb
featureConfidence
1.0
 God of War Ragnarök (Video Game)
hasFeature
Dynamic Loading / int_755d59cb
 Dynamic Loading / int_76686539
type
Dynamic Loading
 Dynamic Loading / int_76686539
comment
Mass Effect:
The elevators, which set the records for being the slowest elevators in any game, ever. The elevator from C-Sec up to the Presidium could take up to two minutes to get there. Interestingly the elevator's speed is adjusted to match the loads: the lifts move slowly on PlayStation 3 but are lightning-fast on PC and PlayStation 5 (although oddly not on Xbox 360 using the Install feature). To compensate this, you'd often get an ad or character-based small talk between Squad Mates to pass the time for ten seconds (so, about a fifth of the loading time). These are part of the reason why the prompt to skip the loads in the Legendary Edition are optional: outside of being beloved by some fans, you pick up two Assignments this way and get to know your Squad.
Other loads aren't as lucky: the "decontamination" airlock on the Normandy serves as a loading screen in disguise, as is the elevator down to the Cargo Bay.
Dynamic Loading Fail - In large, detailed areas such as the Citadel Presidium, it's possible to outrun the Dynamic Loading, causing the game to pause with a "loading" message to catch up. It's also possible to get stuck in some pieces of architecture if you get there before it's fully spawned.
 Dynamic Loading / int_76686539
featureApplicability
1.0
 Dynamic Loading / int_76686539
featureConfidence
1.0
 Mass Effect (Video Game)
hasFeature
Dynamic Loading / int_76686539
 Dynamic Loading / int_7668653a
type
Dynamic Loading
 Dynamic Loading / int_7668653a
comment
Mass Effect 2 replaced all the elevators with standard (if particularly shiny) loading screens, but still uses Dynamic Loading for the individual levels. It's possible to outrun it. Most EA games concurrent and post Mass Effect 2 throw up fancy loading screens with lore-related animations (also seen in Dragon Age 2, for example).
 Dynamic Loading / int_7668653a
featureApplicability
1.0
 Dynamic Loading / int_7668653a
featureConfidence
1.0
 Mass Effect 2 (Video Game)
hasFeature
Dynamic Loading / int_7668653a
 Dynamic Loading / int_7668653b
type
Dynamic Loading
 Dynamic Loading / int_7668653b
comment
Mass Effect 3 also uses this, notably for when you access the War Room on the Normandy. The War Room offers a terminal that gives the player access to the "galactic readiness" statistics from both the single-player campaign and the percentage modifiers gained by the online multiplayer stages. Because of this, there is a scanner adjacent to the conference room where the player is forced to pause for a security scan to allow the game to connect to the game's online server and collate data and then to disconnect and release data not readily available. This is a necessary tradeoff, as the security scan loading takes place regardless of whether the player actually accesses the terminal in the War Room or not, as otherwise the loading would take place when directly accessing the terminal where it would be far more noticeable. The scanner station remains in the Legendary Edition compilation, though it no longer serves a purpose as all online multiplayer elements have been removed, meaning that only local single-player factors affect the galactic readiness score.
Another common tactic from 3 is the Bypass sequence, which is totally automatic, but never instant in order to cover up a load time, usually for an exciting cutscene (or just to load Liara's office).
 Dynamic Loading / int_7668653b
featureApplicability
1.0
 Dynamic Loading / int_7668653b
featureConfidence
1.0
 Mass Effect 3 (Video Game)
hasFeature
Dynamic Loading / int_7668653b
 Dynamic Loading / int_7988cb68
type
Dynamic Loading
 Dynamic Loading / int_7988cb68
comment
Mass Effect has had a storied history with this trope. Many of these have been alleviated by the Legendary Edition on PlayStation 5 and Xbox Series X|S with their SSD loads (to the point that doors you'd use to wait behind now open up instantly like any other door).
The series overall uses Winding Corridors a whole lot as well as Elevators to help break levels up into manageable chunks. This was especially common in the second and third games, which added more detailed and open-air spaces, but resulted in odd layouts like Illium, where apparently the best path between two points is a Z shape.
Mass Effect:
The elevators, which set the records for being the slowest elevators in any game, ever. The elevator from C-Sec up to the Presidium could take up to two minutes to get there. Interestingly the elevator's speed is adjusted to match the loads: the lifts move slowly on PlayStation 3 but are lightning-fast on PC and PlayStation 5 (although oddly not on Xbox 360 using the Install feature). To compensate this, you'd often get an ad or character-based small talk between Squad Mates to pass the time for ten seconds (so, about a fifth of the loading time). These are part of the reason why the prompt to skip the loads in the Legendary Edition are optional: outside of being beloved by some fans, you pick up two Assignments this way and get to know your Squad.
Other loads aren't as lucky: the "decontamination" airlock on the Normandy serves as a loading screen in disguise, as is the elevator down to the Cargo Bay.
Dynamic Loading Fail - In large, detailed areas such as the Citadel Presidium, it's possible to outrun the Dynamic Loading, causing the game to pause with a "loading" message to catch up. It's also possible to get stuck in some pieces of architecture if you get there before it's fully spawned.
Mass Effect 2 replaced all the elevators with standard (if particularly shiny) loading screens, but still uses Dynamic Loading for the individual levels. It's possible to outrun it. Most EA games concurrent and post Mass Effect 2 throw up fancy loading screens with lore-related animations (also seen in Dragon Age 2, for example).
Mass Effect 3 also uses this, notably for when you access the War Room on the Normandy. The War Room offers a terminal that gives the player access to the "galactic readiness" statistics from both the single-player campaign and the percentage modifiers gained by the online multiplayer stages. Because of this, there is a scanner adjacent to the conference room where the player is forced to pause for a security scan to allow the game to connect to the game's online server and collate data and then to disconnect and release data not readily available. This is a necessary tradeoff, as the security scan loading takes place regardless of whether the player actually accesses the terminal in the War Room or not, as otherwise the loading would take place when directly accessing the terminal where it would be far more noticeable. The scanner station remains in the Legendary Edition compilation, though it no longer serves a purpose as all online multiplayer elements have been removed, meaning that only local single-player factors affect the galactic readiness score.
Another common tactic from 3 is the Bypass sequence, which is totally automatic, but never instant in order to cover up a load time, usually for an exciting cutscene (or just to load Liara's office).
Mass Effect: Andromeda uses this — to varying degrees of success — to handle transitions between sections of the expansive planets without having to put up a loading screen.
Unfortunately, if you drive the Nomad across large sections of the map, you can often outpace dynamic loading, leading to Dynamic Loading Fail. In some cases, the Nomad will suddenly freeze but will still sound like it's moving, as if the game has crashed, but the player can still move the camera around; then, after five to ten seconds, the world in the direction you're heading will suddenly become more detailed and the Nomad will resume movement as if nothing strange just happened.
Kadara provides an example of other, very unfortunate examples of dynamic loading fail. For some reason, many loading points were placed in the middle of enemy encampments/combat zones. In one case, this leads to the frustrating effect of having the map hang for loading while strifing mid-combat, then hanging AGAIN if you strife the other direction. In another case, the dynamic load actually unloads some of the enemies you were fighting, causing them to disappear and combat to abruptly end without earning any experience points.
Most frustratingly of all, the game does not indicate to the player _why_ the game has frozen. There is no loading animation for dynamic map loads.
 Dynamic Loading / int_7988cb68
featureApplicability
1.0
 Dynamic Loading / int_7988cb68
featureConfidence
1.0
 Mass Effect (Franchise)
hasFeature
Dynamic Loading / int_7988cb68
 Dynamic Loading / int_7bff7264
type
Dynamic Loading
 Dynamic Loading / int_7bff7264
comment
The first game has a lot of Winding Corridors, eg on "Assault on the Control Room" and "The Library". Limited Paths (sometimes involving "kill barriers") and Space Filling Paths are also often used, as well as Loading Barriers, elevator action sequences, and Speed Bumps (airlocks, timed doors, Hold the Line sequences). Sequence Breaking can lead to Dynamic Loading Fail.
 Dynamic Loading / int_7bff7264
featureApplicability
1.0
 Dynamic Loading / int_7bff7264
featureConfidence
1.0
 Halo: Combat Evolved (Video Game)
hasFeature
Dynamic Loading / int_7bff7264
 Dynamic Loading / int_7e31a540
type
Dynamic Loading
 Dynamic Loading / int_7e31a540
comment
Similar to Brawl, Dragon Ball Z: Budokai series often has minigames instead of static loading screens.
 Dynamic Loading / int_7e31a540
featureApplicability
1.0
 Dynamic Loading / int_7e31a540
featureConfidence
1.0
 Dragon Ball Z: Budokai (Video Game)
hasFeature
Dynamic Loading / int_7e31a540
 Dynamic Loading / int_80ddf5c1
type
Dynamic Loading
 Dynamic Loading / int_80ddf5c1
comment
God of War received a LOT of technical applause for being a console disc game with almost no loading. Its many, many battles rely heavily on Instant Enemies, presumably to enable this.
As well, the game will freeze and load should the player backtrack through previously explored areas. However, since it doesn't feature Respawning Enemies, and since often Kratos destroys said areas, this need to load is quite rare.
The first two games relied heavily on Dynamic Loading Trot and Limited Sprint.
Kratos' top running speed is a moderate trot. It's so slow that some enemies can catch up and pass him while they're moving backward.
His roll moves are much quicker, but have a long recovery time (Limited Sprint) to prevent players from outrunning the Dynamic Loading. Never the less, it's possible to abuse glitches to roll almost continually, generally resulting in a "Loading" message before long.
When the high-definition remastered God of War Collection was released on one PlayStation 3 Blu Ray disc, "outrunning the dynamic loading" became more common, leading to more frequent loading pauses.
God of War (PS4) is able to utilize a fast travel system with a game that is one continuous shot by using loading corridors. When Kratos fast travels to another location, he is shunted to Yggdrasil first, a small area that loops endlessly until the new location is loaded, at which point a door appears. This is most noticeable in the late game, as earlier fast travel will have conversations between Kratos, Atreus, and Mimir fill the void. Do it enough, and they'll have nothing left to say, calling attention to the emptiness of the sequence.
Additionally, Kratos and Atreus will frequently encounter tight spaces, narrow ledges, and huge rocks blocking their path. The first two are trots, lowering movement speed (with one exception, where transforming a ledge to a proper walkway is part of a timed puzzle). The latter is a stop as Kratos' lifts the stone clear, albeit a much shorter one than the crawlspaces.
This approach was repeated verbatim in God of War Ragnarök, due to it being one of the last games released on the PS4.
 Dynamic Loading / int_80ddf5c1
featureApplicability
1.0
 Dynamic Loading / int_80ddf5c1
featureConfidence
1.0
 God of War (Video Game)
hasFeature
Dynamic Loading / int_80ddf5c1
 Dynamic Loading / int_81c929fa
type
Dynamic Loading
 Dynamic Loading / int_81c929fa
comment
Jedi Fallen Order does this whenever you travel in between worlds. As you're going from one part of the galaxy to the next, you're free to chat with your crew members about the next mission, customize your lightsaber, save your game, upgrade your abilities, and check on your hydroponics collection, among others.
 Dynamic Loading / int_81c929fa
featureApplicability
1.0
 Dynamic Loading / int_81c929fa
featureConfidence
1.0
 Star Wars Jedi: Fallen Order (Video Game)
hasFeature
Dynamic Loading / int_81c929fa
 Dynamic Loading / int_8258e260
type
Dynamic Loading
 Dynamic Loading / int_8258e260
comment
Super Mario Bros.:
Super Mario Galaxy uses the planet-to-planet star pads to stream in new data as Mario zooms through space. This is probably a big reason for star bits being in the game; so players can try to grab them during these loads.
Super Mario 3D World has a plain red backdrop appear on screen when you start a level as it shows the level name and characters each player uses. You can use this time to switch characters before the level loads completely and starts the game.
 Dynamic Loading / int_8258e260
featureApplicability
1.0
 Dynamic Loading / int_8258e260
featureConfidence
1.0
 Super Mario Bros. (Franchise)
hasFeature
Dynamic Loading / int_8258e260
 Dynamic Loading / int_836d7bfb
type
Dynamic Loading
 Dynamic Loading / int_836d7bfb
comment
Mafia: The City of Lost Heaven would often have the whole city loaded all at once in FreeRide, but would dynamically load in missions, such as the ones taking place in the country.
 Dynamic Loading / int_836d7bfb
featureApplicability
1.0
 Dynamic Loading / int_836d7bfb
featureConfidence
1.0
 Mafia: The City of Lost Heaven (Video Game)
hasFeature
Dynamic Loading / int_836d7bfb
 Dynamic Loading / int_853d51b9
type
Dynamic Loading
 Dynamic Loading / int_853d51b9
comment
In Microsoft Flight Simulator, you have an initial loading screen (which can be quite lengthy depending on your computer's speed, selected display settings and add-on scenery installed), but after that you can fly around the world (literally) without ever seeing a loading screen. If you change your location abruptly instead of flying there (e.g. by using the "go to airport" function) you end up in a very low detail environment that will get progressively better as the game loads the scenery in the background. Additionally, later versions will load the selected location while still in the menu screen to shorten the initial load.
 Dynamic Loading / int_853d51b9
featureApplicability
1.0
 Dynamic Loading / int_853d51b9
featureConfidence
1.0
 Microsoft Flight Simulator (Video Game)
hasFeature
Dynamic Loading / int_853d51b9
 Dynamic Loading / int_87f2d9f8
type
Dynamic Loading
 Dynamic Loading / int_87f2d9f8
comment
Any game that makes use of Unreal Engine 3 (e.g. The Gears of War series, Mass Effect, BioShock 2, BioShock Infinite) does this. You are guaranteed to see 8x8 resolution textures when you first spawn, at which point the game will actually start loading the full ones. Oh god, the texture popping. At least it makes the loading screen shorter. In some cases, the distant buildings, scenery, or sky will look "wrong" or mis-colored (e.g. the clouds and weather in BioShock Infinite) until you approach it. This is particularly grating in Transformers: War for Cybertron. You'll have the game loading right before a cutscene, so the characters in the cutscene will be 8x8-textured blobs. Soundwave's first appearance is a good example. And we endure a 10 minute HD install because...?
 Dynamic Loading / int_87f2d9f8
featureApplicability
1.0
 Dynamic Loading / int_87f2d9f8
featureConfidence
1.0
 MassEffect
hasFeature
Dynamic Loading / int_87f2d9f8
 Dynamic Loading / int_8bb966e
type
Dynamic Loading
 Dynamic Loading / int_8bb966e
comment
Shadow of the Tomb Raider built on this by adding muddy areas that could only be waded through very slowly. At first they seemed cool, because they rendering of the mud is quite detailed and realistic. However after a while it became obvious that they had been thrown in between each area in order to let the next one load, regardless of whether or not you'd realistically find mud in that place.
 Dynamic Loading / int_8bb966e
featureApplicability
1.0
 Dynamic Loading / int_8bb966e
featureConfidence
1.0
 Shadow of the Tomb Raider (Video Game)
hasFeature
Dynamic Loading / int_8bb966e
 Dynamic Loading / int_8c87469c
type
Dynamic Loading
 Dynamic Loading / int_8c87469c
comment
The Legend of Zelda: Skyward Sword uses small cutscenes to mask loading times in several areas. Dungeons and other parts of the game have doors separating rooms which take ~2 seconds for Link to open while the game loads the next room. Additionally, a cutscene of Link skydiving gives the game time to load the surface world.
 Dynamic Loading / int_8c87469c
featureApplicability
1.0
 Dynamic Loading / int_8c87469c
featureConfidence
1.0
 The Legend of Zelda: Skyward Sword (Video Game)
hasFeature
Dynamic Loading / int_8c87469c
 Dynamic Loading / int_8da0ea80
type
Dynamic Loading
 Dynamic Loading / int_8da0ea80
comment
In Pokémon Red, Blue and Yellow, these weren't too bad, as they weren't common and usually had interesting things in them such as binoculars and people willing to make trades. On a darker note, they had superlong underground tunnels as well, which had maybe one hidden item nobody bothers looking for.
 Dynamic Loading / int_8da0ea80
featureApplicability
1.0
 Dynamic Loading / int_8da0ea80
featureConfidence
1.0
 Pokémon Red and Blue (Video Game)
hasFeature
Dynamic Loading / int_8da0ea80
 Dynamic Loading / int_8ec33aad
type
Dynamic Loading
 Dynamic Loading / int_8ec33aad
comment
Xenoblade Chronicles X uses this for its vast overworld - the only loading screens are for entering or leaving your room, for loading the game up, and for using fast travel. Speeding around in a Skell reveals the Dynamic Loading Fail at times, though, especially if you rocket around to New Los Angeles from a significant distance to the east - the basic blurry textures loaded don't match the actual geometry, and the next 10-15 seconds will load everything.
 Dynamic Loading / int_8ec33aad
featureApplicability
1.0
 Dynamic Loading / int_8ec33aad
featureConfidence
1.0
 Xenoblade Chronicles X (Video Game)
hasFeature
Dynamic Loading / int_8ec33aad
 Dynamic Loading / int_91684031
type
Dynamic Loading
 Dynamic Loading / int_91684031
comment
The Guardhouses return in Pokémon Black and White since the areas are much more unique and a lot of them use dynamic camera angles to show off Scenery Porn. A strange case of this is applied to the first bridge in the game, the Skyarrow Bridge. Unlike all the other bridges, there are no trainers or interesting Non Player Characters or even items, the entire thing is a really long case of showing off as the cameras zip around while you're walking, running or biking through. There's a guardhouse before it, probably to load it, then another guardhouse afterwards which is probably used in conjunction with the bridge itself to load the next town, a sprawling metropolis that's the biggest city in the series that is itself divided into long streets.
 Dynamic Loading / int_91684031
featureApplicability
1.0
 Dynamic Loading / int_91684031
featureConfidence
1.0
 Pokémon Black and White (Video Game)
hasFeature
Dynamic Loading / int_91684031
 Dynamic Loading / int_935a39be
type
Dynamic Loading
 Dynamic Loading / int_935a39be
comment
In Super Smash Bros. Brawl, you can beat up Sandbag in the time it takes to load up an online match.
 Dynamic Loading / int_935a39be
featureApplicability
1.0
 Dynamic Loading / int_935a39be
featureConfidence
1.0
 Super Smash Bros. Brawl (Video Game)
hasFeature
Dynamic Loading / int_935a39be
 Dynamic Loading / int_94081029
type
Dynamic Loading
 Dynamic Loading / int_94081029
comment
The early Ridge Racer games often hid dynamic loading popup with hills, walls, and turns.
 Dynamic Loading / int_94081029
featureApplicability
1.0
 Dynamic Loading / int_94081029
featureConfidence
1.0
 Ridge Racer (Video Game)
hasFeature
Dynamic Loading / int_94081029
 Dynamic Loading / int_9c9b3095
type
Dynamic Loading
 Dynamic Loading / int_9c9b3095
comment
Metroid Prime: Hunters, as in the console trilogy, has very short hallways that act like this. Once you walk in and shoot the next door, it won't open right away. Instead, it will load the next section's data. For the case of bosses, the door before the boss will also do nothing when shot and touched until the FMV introducing the boss finishes loading.
 Dynamic Loading / int_9c9b3095
featureApplicability
1.0
 Dynamic Loading / int_9c9b3095
featureConfidence
1.0
 Metroid Prime: Hunters (Video Game)
hasFeature
Dynamic Loading / int_9c9b3095
 Dynamic Loading / int_9ef055f4
type
Dynamic Loading
 Dynamic Loading / int_9ef055f4
comment
Ratchet & Clank series
Elevators -
They're usually outside, where they act as one-way speed bumps.
The "Cage Match!" transition is a form of Elevator.
Grind Rails - The Trope Namer for Grind Boots.
Limited Paths - done well in the first two games.
Limited Sprint - Charge Boots slow to Ratchet's usual pace after a short time. Lampshaded in Deadlocked.
Instant Enemies
Even though it was touted as needing the PlayStation 5's fast SSD, Rift Apart may have not actually needed it as explained by a video from Coding Secrets. The video explains that the fast paced sections the marketing team said needed an SSD were small, linear, and the player's control was limited. These were then separated by lightweight "void" spaces that would allow enough time to pre-load the next section. They also have an example using another game where there's two separate scenes going on but the game is still working on both on a PlayStation 3 or Xbox 360.
 Dynamic Loading / int_9ef055f4
featureApplicability
1.0
 Dynamic Loading / int_9ef055f4
featureConfidence
1.0
 Ratchet & Clank (Franchise)
hasFeature
Dynamic Loading / int_9ef055f4
 Dynamic Loading / int_9f89a5f0
type
Dynamic Loading
 Dynamic Loading / int_9f89a5f0
comment
Pokémon has its gates, also known as guardhouses or lookout stations:
In Pokémon Red, Blue and Yellow, these weren't too bad, as they weren't common and usually had interesting things in them such as binoculars and people willing to make trades. On a darker note, they had superlong underground tunnels as well, which had maybe one hidden item nobody bothers looking for.
The remakes Fire Red and Leaf Green added eyecatches at the beginning of certain areas, viridian forest and some caves for example, that stay on the screen for a second before fading in or flashing to the actual map. These also appeared in Heartgold and Soulsilver. The Seagallop High Speed 7 was also a superfast loading screen whenever you wanted to visit the newly added Sevii islands. It was a split second long, but necessary since the Sevii Islands had their own separate map and couldn't simply be flown to.
Pokémon Gold, Silver and Crystal featured the guardhouses more frequently. The guardhouses from this generation generally had no other purposes.
Pokémon Ruby, Sapphire and Emerald eliminated guardhouses due to advances no longer making them necessary.
Starting in Pokémon Diamond and Pearl, Pokémon games store the full map as a grid of 32x32 sub-maps, and in addition to the sub-map the one the player character is in, it attempts to keep the adjacent ones loaded (similar to the Luigi's Mansion example). This can result in Dynamic Loading Fail (a.k.a."Tweaking") if the player rides a bike at top speed then makes a sudden 90-degree turn so as to trigger a load immediately before turning and another load immediately after the turn.note For example, the player could start in a spot where moving one tile east would trigger a load, ride north far enough to trigger a different load, then turn east at top speed immediately after the first load starts. This technique rendered the guardhouses unnecessary except when loading towns, which sometimes had unique textures that needed to be loaded.
The Guardhouses return in Pokémon Black and White since the areas are much more unique and a lot of them use dynamic camera angles to show off Scenery Porn. A strange case of this is applied to the first bridge in the game, the Skyarrow Bridge. Unlike all the other bridges, there are no trainers or interesting Non Player Characters or even items, the entire thing is a really long case of showing off as the cameras zip around while you're walking, running or biking through. There's a guardhouse before it, probably to load it, then another guardhouse afterwards which is probably used in conjunction with the bridge itself to load the next town, a sprawling metropolis that's the biggest city in the series that is itself divided into long streets.
In general, the game also loads whichever area you're going to with escape ropes, Dig, Teleport or Fly. In the first generation games, the game stayed on a blank screen for a split second during the transition, but this is not noticeable in the later games as they use longer but cool looking animations of flying to a different area. Flying to a big area with a unique camera angle in black and White also took a second to zoom out after landing as well. Battles are also loaded throughout the series with battle swirls, but apparently not so in Black and White, which sometimes lags for about 5 seconds before the battle swirl. Roaming Legendaries use an extra long battle swirl, however, as it also loads the current state of the legendary, which carries over from the previous time it ran away.
 Dynamic Loading / int_9f89a5f0
featureApplicability
1.0
 Dynamic Loading / int_9f89a5f0
featureConfidence
1.0
 Pokémon (Franchise)
hasFeature
Dynamic Loading / int_9f89a5f0
 Dynamic Loading / int_a2dee471
type
Dynamic Loading
 Dynamic Loading / int_a2dee471
comment
In The Legend of Zelda: The Wind Waker islands load while you are sailing towards them. In fact, the developers set the sailing speed as seen in the Gamecube version in order to ensure the islands do get loaded. If you somehow managed to beat out the dynamic loading, the game irised-out and reset you in your boat in the loaded quadrant without a word. With the improved hardware of the Wii U, loading has improved to the point of being able to load the entire Great Sea at once, and there is a new Swift Sail for the boat obtainable in the game.
 Dynamic Loading / int_a2dee471
featureApplicability
1.0
 Dynamic Loading / int_a2dee471
featureConfidence
1.0
 The Legend of Zelda: The Wind Waker (Video Game)
hasFeature
Dynamic Loading / int_a2dee471
 Dynamic Loading / int_a45154c1
type
Dynamic Loading
 Dynamic Loading / int_a45154c1
comment
Levels in the original MDK were divided into several "arenas" which were connected by tunnels; the next arena was loaded when the player traversed one of these tunnels. Same applies with MDK2.
 Dynamic Loading / int_a45154c1
featureApplicability
1.0
 Dynamic Loading / int_a45154c1
featureConfidence
1.0
 MDK (Video Game)
hasFeature
Dynamic Loading / int_a45154c1
 Dynamic Loading / int_a4c36b62
type
Dynamic Loading
 Dynamic Loading / int_a4c36b62
comment
PlanetSide 2 utilizes dynamic loading to shorten the duration of its loading screens when respawning. When the game first came out, the system led to freshly logged-in players hot dropped into the combat zone landing in front of invisible enemy tanks while headless enemies sitting on a rock floating in a bottomless void mow them down with completely silent guns.
 Dynamic Loading / int_a4c36b62
featureApplicability
1.0
 Dynamic Loading / int_a4c36b62
featureConfidence
1.0
 PlanetSide (Video Game)
hasFeature
Dynamic Loading / int_a4c36b62
 Dynamic Loading / int_a599305d
type
Dynamic Loading
 Dynamic Loading / int_a599305d
comment
The GBA and DS based Mega Man Zero and ZX games keep the "WARNING" concept, partly because it is a semi-good idea (it lets you know this isn't a mini-boss), and partly because many bosses lack the corridor room before the boss. It also pops up in SNK vs. Capcom: SVC Chaos whenever Zero fights a boss character.
 Dynamic Loading / int_a599305d
featureApplicability
1.0
 Dynamic Loading / int_a599305d
featureConfidence
1.0
 Mega Man Zero (Video Game)
hasFeature
Dynamic Loading / int_a599305d
 Dynamic Loading / int_a6f6433c
type
Dynamic Loading
 Dynamic Loading / int_a6f6433c
comment
Jak and Daxter took advantage of Limited Sprint - Jak 'trips' if he runs too far in a single direction. Often, however, this needed several flips to manage, and unless you know what you're looking for.
Ironically, the second and third games actually took a step backwards in this respect, as they had more blatant "airlock" doors at points that took several seconds to open.
 Dynamic Loading / int_a6f6433c
featureApplicability
1.0
 Dynamic Loading / int_a6f6433c
featureConfidence
1.0
 Jak and Daxter (Video Game)
hasFeature
Dynamic Loading / int_a6f6433c
 Dynamic Loading / int_a895e9d2
type
Dynamic Loading
 Dynamic Loading / int_a895e9d2
comment
Portal had the elevator behind the emancipation grille at the end of each area, and Portal 2 had the red/green light doors with the short corridor behind them.
 Dynamic Loading / int_a895e9d2
featureApplicability
1.0
 Dynamic Loading / int_a895e9d2
featureConfidence
1.0
 Portal (Video Game)
hasFeature
Dynamic Loading / int_a895e9d2
 Dynamic Loading / int_aa6e878e
type
Dynamic Loading
 Dynamic Loading / int_aa6e878e
comment
The Living Books games were forced to use this, since it was in the early 90's and it was complicated to find a way to load the game quickly. Very often, the game would distract us with a long animation while the game was frantically trying to get everything loaded for the next screen. Since Technology Marches On, the games being played on newer computers makes this a little bit unnecessary.
 Dynamic Loading / int_aa6e878e
featureApplicability
1.0
 Dynamic Loading / int_aa6e878e
featureConfidence
1.0
 Living Books (Video Game)
hasFeature
Dynamic Loading / int_aa6e878e
 Dynamic Loading / int_ac6b386d
type
Dynamic Loading
 Dynamic Loading / int_ac6b386d
comment
The console versions of Skullgirls have to stream the animation frames for characters in and out as they're needed, with the sprites occasionally looking derezzed when they fail to load fast enough. According to the developers, the characters can only use 130 megabytes of memory on a PS3, and six characters can take up around 900 megabytesnote This amounts to over 7000 frames of animation. The PC port does away with this and has all the sprites loaded at the start of the match.
 Dynamic Loading / int_ac6b386d
featureApplicability
1.0
 Dynamic Loading / int_ac6b386d
featureConfidence
1.0
 Skullgirls (Video Game)
hasFeature
Dynamic Loading / int_ac6b386d
 Dynamic Loading / int_ae050a9f
type
Dynamic Loading
 Dynamic Loading / int_ae050a9f
comment
The Legend of Zelda: Ocarina of Time sometimes makes you walk along short "hallways" between two rooms (only if there is no door to separate the rooms) so the next room will load if you pass a certain point in the hallway. You can get to a room without it loading it by using the levitation glitch, when you make it to the room it will be missing everything that wasn't visible in the other room. Try levitating from the main area in the Kokiri Forest to the Great Deku Tree's area and you'll be surprised by what you find... or don't find.
 Dynamic Loading / int_ae050a9f
featureApplicability
1.0
 Dynamic Loading / int_ae050a9f
featureConfidence
1.0
 The Legend of Zelda: Ocarina of Time / Videogame
hasFeature
Dynamic Loading / int_ae050a9f
 Dynamic Loading / int_af1b6eb6
type
Dynamic Loading
 Dynamic Loading / int_af1b6eb6
comment
Castlevania loaded the screen tile by tile in vertical columns; screwing with this process allows for Simon to keep climbing staircases that should have terminated (most infamously, for the final ascent to fight Dracula, but this can also be done to shortcut platforming elsewhere).
 Dynamic Loading / int_af1b6eb6
featureApplicability
1.0
 Dynamic Loading / int_af1b6eb6
featureConfidence
1.0
 Castlevania (1986) (Video Game)
hasFeature
Dynamic Loading / int_af1b6eb6
 Dynamic Loading / int_af552e7e
type
Dynamic Loading
 Dynamic Loading / int_af552e7e
comment
For the entire trilogy, loading of the next room doesn't start until you're in the proximity of the door, which will refuse to open until the loading is done. Players who try to bum rush past enemies will be halted by the frozen door, whereas taking time to take out enemies or simply not rushing gives the game ample time to load the room by the time you reach the door. In the first Metroid Prime, a flaw in the loading code can cause the game to freeze if the player approaches a door too quickly.
 Dynamic Loading / int_af552e7e
featureApplicability
1.0
 Dynamic Loading / int_af552e7e
featureConfidence
1.0
 Metroid Prime (Video Game)
hasFeature
Dynamic Loading / int_af552e7e
 Dynamic Loading / int_af60702d
type
Dynamic Loading
 Dynamic Loading / int_af60702d
comment
The Legend of Zelda has a brief pause when you move to the next room or area, which is used to load the next area plus whatever enemies that are there. Sometimes the enemy data takes longer to load than normal and causes the sprite to appear as a puff of smoke until the sprite is fully loaded. This can also happens to the NPCs you meet in caves and you can't move until they are loaded since you are usually forced to wait for their text box to finish.
 Dynamic Loading / int_af60702d
featureApplicability
1.0
 Dynamic Loading / int_af60702d
featureConfidence
1.0
 The Legend of Zelda (Video Game)
hasFeature
Dynamic Loading / int_af60702d
 Dynamic Loading / int_b1df22ec
type
Dynamic Loading
 Dynamic Loading / int_b1df22ec
comment
Tales of Graces has the battles preloaded before you truly enter the battle. This becomes evident when you use a Dark Bottle to respawn the fodder. If you run into a monster before it's finished fading onto the field, the battle won't start. However, once you actually enter the battle, it's instant and there isn't any sort of traditional swirly-screen like most the Final Fantasys.
 Dynamic Loading / int_b1df22ec
featureApplicability
1.0
 Dynamic Loading / int_b1df22ec
featureConfidence
1.0
 Tales of Graces (Video Game)
hasFeature
Dynamic Loading / int_b1df22ec
 Dynamic Loading / int_b35adcc8
type
Dynamic Loading
 Dynamic Loading / int_b35adcc8
comment
In Luigi's Mansion 3, an elevator is used to get to different floors and as Luigi is travelling, the selected floor is loaded. Luigi can still move about and perform moves while waiting or, if kept still, begin humming the elevator music.
 Dynamic Loading / int_b35adcc8
featureApplicability
1.0
 Dynamic Loading / int_b35adcc8
featureConfidence
1.0
 Luigi's Mansion 3 (Video Game)
hasFeature
Dynamic Loading / int_b35adcc8
 Dynamic Loading / int_b4967d43
type
Dynamic Loading
 Dynamic Loading / int_b4967d43
comment
In the Sonic the Hedgehog games, Sonic can outrun the loading of the level, causing him to fall off the screen to his death, or the graphics to glitch. Granted, it's not like the developers didn't think the player would want to go fast in a Sonic game; you have to be breaking the game pretty damn hard.
For later games like Sonic Unleashed and Sonic Generations, there is a specific engine designed to load data quickly (the Hedgehog Engine), using "triggers" that load sections of the environment seamlessly as you run towards the goal. Speedrunners that know how to go past entire sections of the level might skip these, meaning most of the level will be invisible until they go past the next trigger.
In the first level of Sonic 3 & Knuckles, after running through a hollowed-out tree, you encounter the first mini-boss who proceeds to firebomb the entire jungle area, with a wall of fire covering the screen. That wall of fire is actually the game loading what is technically the second part (Act, if you will) of the level, though the game tells you you're still in the first part.
The director of Sonic the Hedgehog CD really wanted time-travel to be instantaneous, but settled for a cutscene to allow time for the entire stage to reload.
 Dynamic Loading / int_b4967d43
featureApplicability
1.0
 Dynamic Loading / int_b4967d43
featureConfidence
1.0
 Sonic the Hedgehog (Franchise)
hasFeature
Dynamic Loading / int_b4967d43
 Dynamic Loading / int_b55b8015
type
Dynamic Loading
 Dynamic Loading / int_b55b8015
comment
The first game of Team Ninja's Ninja Gaiden trilogy divides areas with door-opening cutscenes and narrow corridors. The name of the new area is displayed during the process. If Ryu manages to move forward faster than the scene can load, the game pauses with a "Now Loading" prompt.
 Dynamic Loading / int_b55b8015
featureApplicability
1.0
 Dynamic Loading / int_b55b8015
featureConfidence
1.0
 Ninja Gaiden (Video Game)
hasFeature
Dynamic Loading / int_b55b8015
 Dynamic Loading / int_b7c72249
type
Dynamic Loading
 Dynamic Loading / int_b7c72249
comment
Castlevania: Symphony of the Night, the first Metroidvania installment in Castlevania series, had the different areas of the castle connected by dark hallways exactly one screen long. By the time the player could walk from one side of the hall to the other, the next level would be finished loading. The hallways even had a "CD" engraving in the middle of the screen letting you know it was loading from CD. These halls are also in many of the Game Boy Advance and DS installments of the series, despite being on cartridges that have much faster load time as it turned out that abruptly moving from one area to the next was rather jarring.
 Dynamic Loading / int_b7c72249
featureApplicability
1.0
 Dynamic Loading / int_b7c72249
featureConfidence
1.0
 Castlevania: Symphony of the Night (Video Game)
hasFeature
Dynamic Loading / int_b7c72249
 Dynamic Loading / int_be492827
type
Dynamic Loading
 Dynamic Loading / int_be492827
comment
Metroid Prime 2: Echoes has a "travelling in a Pillar of Light" Warp Whistle in addition to its elevators, though that ability doesn't come until near the end of the game (namely when the Light Suit is acquired).
 Dynamic Loading / int_be492827
featureApplicability
1.0
 Dynamic Loading / int_be492827
featureConfidence
1.0
 Metroid Prime 2: Echoes (Video Game)
hasFeature
Dynamic Loading / int_be492827
 Dynamic Loading / int_be68ee29
type
Dynamic Loading
 Dynamic Loading / int_be68ee29
comment
In Super Smash Bros. for Nintendo 3DS and Wii U, you instead beat up a shadowy clone of your character that gets significantly more capable as you fight it.
 Dynamic Loading / int_be68ee29
featureApplicability
1.0
 Dynamic Loading / int_be68ee29
featureConfidence
1.0
 Super Smash Bros. for Nintendo 3DS and Wii U (Video Game)
hasFeature
Dynamic Loading / int_be68ee29
 Dynamic Loading / int_c00614a7
type
Dynamic Loading
 Dynamic Loading / int_c00614a7
comment
Final Fantasy Crystal Chronicles: The Crystal Bearers streams most of its loading screens by preloading everything, and indicating it's done by a door ahead of you opening. There's still some spots that give you the familiar Now Loading text though.
 Dynamic Loading / int_c00614a7
featureApplicability
1.0
 Dynamic Loading / int_c00614a7
featureConfidence
1.0
 Final Fantasy Crystal Chronicles (Video Game)
hasFeature
Dynamic Loading / int_c00614a7
 Dynamic Loading / int_c137ae09
type
Dynamic Loading
 Dynamic Loading / int_c137ae09
comment
God of War (PS4) is able to utilize a fast travel system with a game that is one continuous shot by using loading corridors. When Kratos fast travels to another location, he is shunted to Yggdrasil first, a small area that loops endlessly until the new location is loaded, at which point a door appears. This is most noticeable in the late game, as earlier fast travel will have conversations between Kratos, Atreus, and Mimir fill the void. Do it enough, and they'll have nothing left to say, calling attention to the emptiness of the sequence.
Additionally, Kratos and Atreus will frequently encounter tight spaces, narrow ledges, and huge rocks blocking their path. The first two are trots, lowering movement speed (with one exception, where transforming a ledge to a proper walkway is part of a timed puzzle). The latter is a stop as Kratos' lifts the stone clear, albeit a much shorter one than the crawlspaces.
 Dynamic Loading / int_c137ae09
featureApplicability
1.0
 Dynamic Loading / int_c137ae09
featureConfidence
1.0
 God of War (PS4) (Video Game)
hasFeature
Dynamic Loading / int_c137ae09
 Dynamic Loading / int_c19c6efa
type
Dynamic Loading
 Dynamic Loading / int_c19c6efa
comment
Minecraft has Dynamic Loading and Dynamic Map Generation: 16 x 16 chunks of the world literally don't exist until the player gets close enough. And only the chunks near the player are being simulated. This can cause Dynamic Loading Failures if the player uses means of travel faster than walking like teleporting, full-speed minecarts, Speed potion effects, and flying in Creative mode. The world itself usually loads up in time, but animals and enemies take some time to spawn.
 Dynamic Loading / int_c19c6efa
featureApplicability
1.0
 Dynamic Loading / int_c19c6efa
featureConfidence
1.0
 Minecraft (Video Game)
hasFeature
Dynamic Loading / int_c19c6efa
 Dynamic Loading / int_c1b43f85
type
Dynamic Loading
 Dynamic Loading / int_c1b43f85
comment
Super Mario 3D World has a plain red backdrop appear on screen when you start a level as it shows the level name and characters each player uses. You can use this time to switch characters before the level loads completely and starts the game.
 Dynamic Loading / int_c1b43f85
featureApplicability
1.0
 Dynamic Loading / int_c1b43f85
featureConfidence
1.0
 Super Mario 3D World (Video Game)
hasFeature
Dynamic Loading / int_c1b43f85
 Dynamic Loading / int_c4df4e18
type
Dynamic Loading
 Dynamic Loading / int_c4df4e18
comment
Later Tony Hawk's Pro Skater titles dynamically load areas during gameplay, removing the need for loading screens. In fact, Tony Hawk's American Wasteland's advertising campaign mainly revolved around the game having no loading screens. However, in that game, traveling between areas still requires you to traverse a long, mostly-empty hallway, during which the game will load the next map. If you traverse the loading tunnels faster than the game can load the map, the game will switch to a slowed-down "security recording" view.
 Dynamic Loading / int_c4df4e18
featureApplicability
1.0
 Dynamic Loading / int_c4df4e18
featureConfidence
1.0
 Tony Hawk's Pro Skater (Video Game)
hasFeature
Dynamic Loading / int_c4df4e18
 Dynamic Loading / int_c6e9c6cc
type
Dynamic Loading
 Dynamic Loading / int_c6e9c6cc
comment
Super Mario Galaxy uses the planet-to-planet star pads to stream in new data as Mario zooms through space. This is probably a big reason for star bits being in the game; so players can try to grab them during these loads.
 Dynamic Loading / int_c6e9c6cc
featureApplicability
1.0
 Dynamic Loading / int_c6e9c6cc
featureConfidence
1.0
 Super Mario Galaxy (Video Game)
hasFeature
Dynamic Loading / int_c6e9c6cc
 Dynamic Loading / int_c7d1edfb
type
Dynamic Loading
 Dynamic Loading / int_c7d1edfb
comment
Driver 2 had nasty Dynamic Loading Fail where certain scenery would fail to draw in, allowing you to fall through the ground into the void of death below.
 Dynamic Loading / int_c7d1edfb
featureApplicability
1.0
 Dynamic Loading / int_c7d1edfb
featureConfidence
1.0
 Driver (Video Game)
hasFeature
Dynamic Loading / int_c7d1edfb
 Dynamic Loading / int_c834792e
type
Dynamic Loading
 Dynamic Loading / int_c834792e
comment
Early games in the Spyro the Dragon series used whirlwinds as a form of this, giving the game time to load the next part of the level.
 Dynamic Loading / int_c834792e
featureApplicability
1.0
 Dynamic Loading / int_c834792e
featureConfidence
1.0
 Spyro the Dragon (Franchise)
hasFeature
Dynamic Loading / int_c834792e
 Dynamic Loading / int_cd44d3d6
type
Dynamic Loading
 Dynamic Loading / int_cd44d3d6
comment
The original Crash Bandicoot (1996) was ground-breaking at the time for how it dynamically loaded chunks of a level into memory as you moved through it, making it Progressive Loading. Importantly, load times were only five seconds long because the console would only have to load the start of a level, compared to 30-40 for most other games to load the whole level at once (this also meant that they could vastly exceed the size of the PlayStation 1's RAM, because not all of it would be loaded in at once). This feat was so impressive that other developers thought they hacked the console or were given secret development tools from Sony.
 Dynamic Loading / int_cd44d3d6
featureApplicability
1.0
 Dynamic Loading / int_cd44d3d6
featureConfidence
1.0
 Crash Bandicoot (1996) (Video Game)
hasFeature
Dynamic Loading / int_cd44d3d6
 Dynamic Loading / int_cd95b8df
type
Dynamic Loading
 Dynamic Loading / int_cd95b8df
comment
The Dead Space series is an example of very well implemented dynamic loading. It uses pretty much every trick mentioned above, but in such away that it doesn't detract from the experience at all. In the first game, the only really long loads are between stages(and they're still MUCH shorter than most games, plus they allow you to save in the meantime). The second one practically has no pauses at all.
 Dynamic Loading / int_cd95b8df
featureApplicability
1.0
 Dynamic Loading / int_cd95b8df
featureConfidence
1.0
 Dead Space (Franchise)
hasFeature
Dynamic Loading / int_cd95b8df
 Dynamic Loading / int_cf2faeb3
type
Dynamic Loading
 Dynamic Loading / int_cf2faeb3
comment
Little Computer People had a feature where the game would periodically save the state of your Little Person, so that you could pick up where you left off the next time you loaded the game. The problem was, due to how the Commodore 64 worked, the character sprite would disappear whenever the drive was writing to disk. The solution? The Little Person would take a bathroom break, shutting the door for privacy and taking the character out of sight for a few moments.
 Dynamic Loading / int_cf2faeb3
featureApplicability
1.0
 Dynamic Loading / int_cf2faeb3
featureConfidence
1.0
 Little Computer People (Video Game)
hasFeature
Dynamic Loading / int_cf2faeb3
 Dynamic Loading / int_d3b17858
type
Dynamic Loading
 Dynamic Loading / int_d3b17858
comment
The reason spells had charge time in Final Fantasy Tactics was to disguise the animation's loading times.
 Dynamic Loading / int_d3b17858
featureApplicability
1.0
 Dynamic Loading / int_d3b17858
featureConfidence
1.0
 Final Fantasy Tactics (Video Game)
hasFeature
Dynamic Loading / int_d3b17858
 Dynamic Loading / int_d43cbccb
type
Dynamic Loading
 Dynamic Loading / int_d43cbccb
comment
Luigi's Mansion has an homage or parody of this — there's a door loading animation a la Resident Evil, but you can just press the button and skip it.
 Dynamic Loading / int_d43cbccb
featureApplicability
1.0
 Dynamic Loading / int_d43cbccb
featureConfidence
1.0
 Luigi's Mansion (Video Game)
hasFeature
Dynamic Loading / int_d43cbccb
 Dynamic Loading / int_d48e807f
type
Dynamic Loading
 Dynamic Loading / int_d48e807f
comment
Jet Grind Radio
 Dynamic Loading / int_d48e807f
featureApplicability
1.0
 Dynamic Loading / int_d48e807f
featureConfidence
1.0
 Jet Set Radio (Video Game)
hasFeature
Dynamic Loading / int_d48e807f
 Dynamic Loading / int_d4e47577
type
Dynamic Loading
 Dynamic Loading / int_d4e47577
comment
Doom³ has a lot of speed bumps, such as waiting for a ladder to drop or door to unlock while fighting Demonic Spiders, and winding corridors and limited paths.
 Dynamic Loading / int_d4e47577
featureApplicability
1.0
 Dynamic Loading / int_d4e47577
featureConfidence
1.0
 Doom³ (Video Game)
hasFeature
Dynamic Loading / int_d4e47577
 Dynamic Loading / int_dab32bc
type
Dynamic Loading
 Dynamic Loading / int_dab32bc
comment
Mega Man game for NES was originally planned as a Famicom Disk System title. The boss's animation cels would load in the empty corridor before the boss's room. The loading (but not the corridors) was scrapped when the game was ported to a cartridge. Despite this, both these corridors and miniboss rooms with black backgrounds serve as a place to swap tilemaps and background palettes cleanly, as doing so during a screen transition would corrupt the graphics of the previous room.note Such corruption is notable in numerous total conversion ROM Hacks
In the later Mega Man games for the original PlayStation, the corridor still wasn't long enough to load all data needed for the boss from the CD, leading to eight-second "WARNING" delays in Mega Man X 6.
The GBA and DS based Mega Man Zero and ZX games keep the "WARNING" concept, partly because it is a semi-good idea (it lets you know this isn't a mini-boss), and partly because many bosses lack the corridor room before the boss. It also pops up in SNK vs. Capcom: SVC Chaos whenever Zero fights a boss character.
X8 featured locked corridors within levels where you usually had to kill a wave of Mooks before the next door would open. These were probably meant to avoid loading screens within levels.
A brief Dynamic Loading Fail happens in Mega Man 2, between the "Boss Introduction" and "Stage Start". It is so brief that it can be seen for exactly 1/60 second, resulting in a brief flash of garbage data. And here is one example◊ (at 1/10 of its original speed) of that error.
 Dynamic Loading / int_dab32bc
featureApplicability
1.0
 Dynamic Loading / int_dab32bc
featureConfidence
1.0
 Mega Man (Video Game)
hasFeature
Dynamic Loading / int_dab32bc
 Dynamic Loading / int_dab32bd
type
Dynamic Loading
 Dynamic Loading / int_dab32bd
comment
A brief Dynamic Loading Fail happens in Mega Man 2, between the "Boss Introduction" and "Stage Start". It is so brief that it can be seen for exactly 1/60 second, resulting in a brief flash of garbage data. And here is one example◊ (at 1/10 of its original speed) of that error.
 Dynamic Loading / int_dab32bd
featureApplicability
1.0
 Dynamic Loading / int_dab32bd
featureConfidence
1.0
 Mega Man 2 (Video Game)
hasFeature
Dynamic Loading / int_dab32bd
 Dynamic Loading / int_dab32e3
type
Dynamic Loading
 Dynamic Loading / int_dab32e3
comment
In the later Mega Man games for the original PlayStation, the corridor still wasn't long enough to load all data needed for the boss from the CD, leading to eight-second "WARNING" delays in Mega Man X 6.
 Dynamic Loading / int_dab32e3
featureApplicability
1.0
 Dynamic Loading / int_dab32e3
featureConfidence
1.0
 Mega Man X (Video Game)
hasFeature
Dynamic Loading / int_dab32e3
 Dynamic Loading / int_ddf362f6
type
Dynamic Loading
 Dynamic Loading / int_ddf362f6
comment
Legacy of Kain: Soul Reaver: Back in 1999, dynamic loading was so cutting-edge that gaming magazines wrote whole articles on how Soul Reaver's seamless game world was a revolutionary leap forward.
 Dynamic Loading / int_ddf362f6
featureApplicability
1.0
 Dynamic Loading / int_ddf362f6
featureConfidence
1.0
 Legacy of Kain: Soul Reaver (Video Game)
hasFeature
Dynamic Loading / int_ddf362f6
 Dynamic Loading / int_de1259da
type
Dynamic Loading
 Dynamic Loading / int_de1259da
comment
When the Super Monkey Ball games decided to go open-world, the adopted one of the stupidest airlocks known to gaming. The player has to carefully wind a huge turnpike ten times. There is actually a degree of precision involved; you don't just mindlessly roll the analogue stick in a circle, you actually have to make an effort to keep your monkey on the turnpike's handle. And like we said, ten full laps. And once you're in, you're trapped, no changing your mind and turning back, you gotta wind away. It takes over a minute each time and most areas have more than one turnpike.
 Dynamic Loading / int_de1259da
featureApplicability
1.0
 Dynamic Loading / int_de1259da
featureConfidence
1.0
 Super Monkey Ball (Video Game)
hasFeature
Dynamic Loading / int_de1259da
 Dynamic Loading / int_de276825
type
Dynamic Loading
 Dynamic Loading / int_de276825
comment
The first two Quake games used the Winding Corridors method, in addition to elevators and speed bumps. The PSX version of the second game has somewhat jarring loading screens mid-level, due to RAM limitations.
 Dynamic Loading / int_de276825
featureApplicability
1.0
 Dynamic Loading / int_de276825
featureConfidence
1.0
 Quake (Video Game)
hasFeature
Dynamic Loading / int_de276825
 Dynamic Loading / int_df76da7e
type
Dynamic Loading
 Dynamic Loading / int_df76da7e
comment
Mirror's Edge uses:
Elevator rides
Speed Bumps - e.g. waiting for a fan to shut off.
Dynamic Loading Fail via developer-overlooked shortcuts. Can make the next section of the level unavailable (either requiring special tactics to bypass, or making the shortcut unusable).
 Dynamic Loading / int_df76da7e
featureApplicability
1.0
 Dynamic Loading / int_df76da7e
featureConfidence
1.0
 Mirror's Edge (Video Game)
hasFeature
Dynamic Loading / int_df76da7e
 Dynamic Loading / int_df8856e6
type
Dynamic Loading
 Dynamic Loading / int_df8856e6
comment
Dungeon Siege Ironically, on newer systems the loading system can glitch resulting in the player reaching the edge of the map. This requires a reload. Additionally, if the player is strapped for cash they have to leave one party member to guard the loot while another character walks back and forth to the nearest shop, otherwise it will be cleared from memory as soon as it is out of sight.
 Dynamic Loading / int_df8856e6
featureApplicability
1.0
 Dynamic Loading / int_df8856e6
featureConfidence
1.0
 Dungeon Siege (Video Game)
hasFeature
Dynamic Loading / int_df8856e6
 Dynamic Loading / int_e04f934e
type
Dynamic Loading
 Dynamic Loading / int_e04f934e
comment
Fire Emblem: Three Houses usually has quick loading times for pretty much everything in-game, except when trying to enter the Cathedral when exploring the Monastery. The player is barred from entering it by a portcullis, until the area is loaded. It can take a while.
 Dynamic Loading / int_e04f934e
featureApplicability
1.0
 Dynamic Loading / int_e04f934e
featureConfidence
1.0
 Fire Emblem: Three Houses (Video Game)
hasFeature
Dynamic Loading / int_e04f934e
 Dynamic Loading / int_e1ec0e62
type
Dynamic Loading
 Dynamic Loading / int_e1ec0e62
comment
Grand Theft Auto IV, at the time of its PC release, had a bug where dual-core systems would hang the disk thread after a period of time, leaving you driving on invisible roads above a blurry low LoD ocean. This was fixed relatively quickly in a patch.
 Dynamic Loading / int_e1ec0e62
featureApplicability
1.0
 Dynamic Loading / int_e1ec0e62
featureConfidence
1.0
 Grand Theft Auto IV (Video Game)
hasFeature
Dynamic Loading / int_e1ec0e62
 Dynamic Loading / int_e5d6d049
type
Dynamic Loading
 Dynamic Loading / int_e5d6d049
comment
Fuel uses procedural map generation, due to its incredibly massive environment.
 Dynamic Loading / int_e5d6d049
featureApplicability
1.0
 Dynamic Loading / int_e5d6d049
featureConfidence
1.0
 Fuel (Video Game)
hasFeature
Dynamic Loading / int_e5d6d049
 Dynamic Loading / int_e6c59cd1
type
Dynamic Loading
 Dynamic Loading / int_e6c59cd1
comment
Quake IV not only has Loads and Loads of Loading between levels, but also dynamic loading enforced by unskippable cutscenes, long elevator rides, and Speed Bumps such as time-locked doors, NPC roadblocks, and more egregiously, invisible walls.
 Dynamic Loading / int_e6c59cd1
featureApplicability
1.0
 Dynamic Loading / int_e6c59cd1
featureConfidence
1.0
 Quake IV (Video Game)
hasFeature
Dynamic Loading / int_e6c59cd1
 Dynamic Loading / int_e9c7b01b
type
Dynamic Loading
 Dynamic Loading / int_e9c7b01b
comment
Dissidia Final Fantasy has some pretty long loading times as well, but at least, the ones before combat are pretty well-concealed. The game allows you to take a look at the enemy's stats, equipment and accessories before the battle begins, so most players don't notice the "Now Loading" icon in the bottom-right corner.
 Dynamic Loading / int_e9c7b01b
featureApplicability
1.0
 Dynamic Loading / int_e9c7b01b
featureConfidence
1.0
 Dissidia Final Fantasy (Video Game)
hasFeature
Dynamic Loading / int_e9c7b01b
 Dynamic Loading / int_eab90aec
type
Dynamic Loading
 Dynamic Loading / int_eab90aec
comment
A few games in the Yakuza series implement a clever loading screen hiding gimmick, wherein a mook will take a swipe at your character in a quick cutscene, or a quicktime event will play out, which conveniently relocates the player relatively seamlessly to as wide open a place as possible while also giving time for enemies to load in.
 Dynamic Loading / int_eab90aec
featureApplicability
1.0
 Dynamic Loading / int_eab90aec
featureConfidence
1.0
 Yakuza (Video Game)
hasFeature
Dynamic Loading / int_eab90aec
 Dynamic Loading / int_eb3f3551
type
Dynamic Loading
 Dynamic Loading / int_eb3f3551
comment
Mass Effect: Andromeda uses this — to varying degrees of success — to handle transitions between sections of the expansive planets without having to put up a loading screen.
Unfortunately, if you drive the Nomad across large sections of the map, you can often outpace dynamic loading, leading to Dynamic Loading Fail. In some cases, the Nomad will suddenly freeze but will still sound like it's moving, as if the game has crashed, but the player can still move the camera around; then, after five to ten seconds, the world in the direction you're heading will suddenly become more detailed and the Nomad will resume movement as if nothing strange just happened.
Kadara provides an example of other, very unfortunate examples of dynamic loading fail. For some reason, many loading points were placed in the middle of enemy encampments/combat zones. In one case, this leads to the frustrating effect of having the map hang for loading while strifing mid-combat, then hanging AGAIN if you strife the other direction. In another case, the dynamic load actually unloads some of the enemies you were fighting, causing them to disappear and combat to abruptly end without earning any experience points.
Most frustratingly of all, the game does not indicate to the player _why_ the game has frozen. There is no loading animation for dynamic map loads.
 Dynamic Loading / int_eb3f3551
featureApplicability
1.0
 Dynamic Loading / int_eb3f3551
featureConfidence
1.0
 Mass Effect: Andromeda (Video Game)
hasFeature
Dynamic Loading / int_eb3f3551
 Dynamic Loading / int_eb6719f6
type
Dynamic Loading
 Dynamic Loading / int_eb6719f6
comment
Final Fantasy VIII wasn't exactly slow when it came to loading, but it did kinda do this whenever you challenge someone to a game of Triple Triad (the card game). It takes almost 30 seconds to load the card game which is usually over in 60, and strangely enough, it starts out by letting you hear the background music for the card game, before the game is even loaded completely. That's right. It loads the music first, despite the fact that it isn't necessary.
 Dynamic Loading / int_eb6719f6
featureApplicability
1.0
 Dynamic Loading / int_eb6719f6
featureConfidence
1.0
 Final Fantasy VIII (Video Game)
hasFeature
Dynamic Loading / int_eb6719f6
 Dynamic Loading / int_eb6802b4
type
Dynamic Loading
 Dynamic Loading / int_eb6802b4
comment
Final Fantasy XIII has this on the odd occasion. If you move back and forth between two separate areas, then try to proceed into one of them the game will occasionally hit you in the face with an invisible wall and a small "Loading" sign in the corner.
 Dynamic Loading / int_eb6802b4
featureApplicability
1.0
 Dynamic Loading / int_eb6802b4
featureConfidence
1.0
 Final Fantasy XIII (Video Game)
hasFeature
Dynamic Loading / int_eb6802b4
 Dynamic Loading / int_ede28baa
type
Dynamic Loading
 Dynamic Loading / int_ede28baa
comment
Vanquish switches to a first-person HUD/visor view and slows Sam to a walking pace when loading a level or sublevel. Other devices such as elevators or airlocks are also occasionally used.
 Dynamic Loading / int_ede28baa
featureApplicability
1.0
 Dynamic Loading / int_ede28baa
featureConfidence
1.0
 Vanquish (Video Game)
hasFeature
Dynamic Loading / int_ede28baa
 Dynamic Loading / int_eded135a
type
Dynamic Loading
 Dynamic Loading / int_eded135a
comment
Tomb Raider (2013) has short corridors in certain areas, including before every optional tomb, where Lara lights her torch and walks at a slow pace until the end of the tunnel. If the game doesn't load fast enough, there's an invisible wall right at the end.
Shadow of the Tomb Raider built on this by adding muddy areas that could only be waded through very slowly. At first they seemed cool, because they rendering of the mud is quite detailed and realistic. However after a while it became obvious that they had been thrown in between each area in order to let the next one load, regardless of whether or not you'd realistically find mud in that place.
 Dynamic Loading / int_eded135a
featureApplicability
1.0
 Dynamic Loading / int_eded135a
featureConfidence
1.0
 Tomb Raider (2013) (Video Game)
hasFeature
Dynamic Loading / int_eded135a
 Dynamic Loading / int_f04b4111
type
Dynamic Loading
 Dynamic Loading / int_f04b4111
comment
Metroid:
The first Metroid game has corridors before bosses to aid in loading the boss data before it starts.
Also in the first Metroid, the elevator rooms between areas exist as an excuse for the game to bank-switch and load the next area—in fact you can see this happen when the elevator shaft flickers and changes color at the halfway point. The so-called "Hidden Worlds" result from bypassing this bank-switching, causing the game to use room data from the wrong area.
The elevator sequences in the Metroid Prime Trilogy games serve this purpose. The games also have several small corridors that are either twisty, filled with obstacles, or littered with enemies. The idea is to basically slow you down enough so that the next room can be finished loading when you reach the door. Hallways like these exist because if several large rooms were directly connected to each other, the load times would significantly increase and the doors would stay closed longer until the loading was done. Small rooms/halls are used as the bridge point to connect two large rooms together without slowing down the game.
Metroid Prime 2: Echoes has a "travelling in a Pillar of Light" Warp Whistle in addition to its elevators, though that ability doesn't come until near the end of the game (namely when the Light Suit is acquired).
Metroid Prime 3: Corruption has numerous scenes of Samus's gunship sailing through the air, entering or exiting a planet's atmosphere, or of Samus herself riding a platform, train, or whatever to disguise its loading screens. A bit more varied than simple elevators, but essentially the same idea.
For the entire trilogy, loading of the next room doesn't start until you're in the proximity of the door, which will refuse to open until the loading is done. Players who try to bum rush past enemies will be halted by the frozen door, whereas taking time to take out enemies or simply not rushing gives the game ample time to load the room by the time you reach the door. In the first Metroid Prime, a flaw in the loading code can cause the game to freeze if the player approaches a door too quickly.
Metroid Prime: Hunters, as in the console trilogy, has very short hallways that act like this. Once you walk in and shoot the next door, it won't open right away. Instead, it will load the next section's data. For the case of bosses, the door before the boss will also do nothing when shot and touched until the FMV introducing the boss finishes loading.
Metroid: Other M also uses the above examples as well. Elevator sequences help hide loading for the next area and enemies fill corridors to delay the player so the next area will be ready. However, people who swiftly bypass enemies or blaze through the area with the Speed Booster may find the door not opening right away and the game will literally throw up a "now loading" message on screen until the data is done loading. Thankfully, those are very brief. Other M also has to load everything when you start a saved game. It disguises the loading time by giving a recap of what happened previously in the game in the form of a text scroll. Once the game is ready to start, you can skip the summary if it's still playing. The game also used literal speed bumps—little ledges Samus vaults automatically to prevent the player from using the speed booster everywhere.
 Dynamic Loading / int_f04b4111
featureApplicability
1.0
 Dynamic Loading / int_f04b4111
featureConfidence
1.0
 Metroid (Franchise)
hasFeature
Dynamic Loading / int_f04b4111
 Dynamic Loading / int_f0688fff
type
Dynamic Loading
 Dynamic Loading / int_f0688fff
comment
Pokémon Ruby, Sapphire and Emerald eliminated guardhouses due to advances no longer making them necessary.
 Dynamic Loading / int_f0688fff
featureApplicability
1.0
 Dynamic Loading / int_f0688fff
featureConfidence
1.0
 Pokémon Ruby and Sapphire (Video Game)
hasFeature
Dynamic Loading / int_f0688fff
 Dynamic Loading / int_f27404a0
type
Dynamic Loading
 Dynamic Loading / int_f27404a0
comment
The Conduit uses featureless hallways, sewer pipes, or corridors to disguise mid-level streaming of upcoming areas.
 Dynamic Loading / int_f27404a0
featureApplicability
1.0
 Dynamic Loading / int_f27404a0
featureConfidence
1.0
 The Conduit (Video Game)
hasFeature
Dynamic Loading / int_f27404a0
 Dynamic Loading / int_f4a04cd2
type
Dynamic Loading
 Dynamic Loading / int_f4a04cd2
comment
Resident Evil 3: Nemesis has the game use doors to load the next area just like the previous 2 games before it. However, it may have been possible for the game to have less loading screens due to one event where Nemsis can bash down a door to reach you, allowing you to transition between two rooms without a loading screen whereas you were forced to have a loading screen beforehand.
 Dynamic Loading / int_f4a04cd2
featureApplicability
1.0
 Dynamic Loading / int_f4a04cd2
featureConfidence
1.0
 Resident Evil 3: Nemesis (Video Game)
hasFeature
Dynamic Loading / int_f4a04cd2
 Dynamic Loading / int_f5855286
type
Dynamic Loading
 Dynamic Loading / int_f5855286
comment
The Legend of Zelda: Tears of the Kingdom's deep chasms are an obvious way to hide load times when journeying into the depths. However, you can break this by diving head-first the whole way through, making the game freeze for a bit so it can load properly.
 Dynamic Loading / int_f5855286
featureApplicability
1.0
 Dynamic Loading / int_f5855286
featureConfidence
1.0
 The Legend of Zelda: Tears of the Kingdom (Video Game)
hasFeature
Dynamic Loading / int_f5855286
 Dynamic Loading / int_fa575b33
type
Dynamic Loading
 Dynamic Loading / int_fa575b33
comment
Wangan Midnight Maximum Tune 3 has Dynamic Loading Fail that is continuous and doesn't need Unusual Faster Movement—the draw distance is worse than that of the previous two installments, so large structures such as skyscrapers and bridges will materialize out of nowhere. Before the Maximum Tune sub-series, Wangan Midnight R would sometimes fail to load the area in front of you, causing you to momentarily drive on an invisible road.
 Dynamic Loading / int_fa575b33
featureApplicability
1.0
 Dynamic Loading / int_fa575b33
featureConfidence
1.0
 Wangan Midnight (Video Game)
hasFeature
Dynamic Loading / int_fa575b33
 Dynamic Loading / int_fd5d7b47
type
Dynamic Loading
 Dynamic Loading / int_fd5d7b47
comment
The PSX version of Need for Speed II occasionally had Dynamic Loading Fail where you would run into the end of the loaded section and the game would temporarily freeze before loading the next section. Not to mention the horribly obvious popup.
 Dynamic Loading / int_fd5d7b47
featureApplicability
1.0
 Dynamic Loading / int_fd5d7b47
featureConfidence
1.0
 Need for Speed (Video Game)
hasFeature
Dynamic Loading / int_fd5d7b47
 Dynamic Loading / int_fe24dd6f
type
Dynamic Loading
 Dynamic Loading / int_fe24dd6f
comment
The 2010 Medal of Honor has dynamic loading fail of epic proportions where an entire section of a level sometimes fails to render.
 Dynamic Loading / int_fe24dd6f
featureApplicability
1.0
 Dynamic Loading / int_fe24dd6f
featureConfidence
1.0
 Medal of Honor (Video Game)
hasFeature
Dynamic Loading / int_fe24dd6f
 Dynamic Loading / int_fe85bfc8
type
Dynamic Loading
 Dynamic Loading / int_fe85bfc8
comment
Super Smash Bros.:
In Super Smash Bros. Brawl, you can beat up Sandbag in the time it takes to load up an online match.
In Super Smash Bros. for Nintendo 3DS and Wii U, you instead beat up a shadowy clone of your character that gets significantly more capable as you fight it.
 Dynamic Loading / int_fe85bfc8
featureApplicability
1.0
 Dynamic Loading / int_fe85bfc8
featureConfidence
1.0
 Super Smash Bros. (Video Game)
hasFeature
Dynamic Loading / int_fe85bfc8
 Dynamic Loading / int_ff0f1797
type
Dynamic Loading
 Dynamic Loading / int_ff0f1797
comment
Rogue Galaxy has lengthy elevator rides that load the next area while you sit around, bored, and possibly revolve the camera to try and see your female characters from different angles.
 Dynamic Loading / int_ff0f1797
featureApplicability
1.0
 Dynamic Loading / int_ff0f1797
featureConfidence
1.0
 Rogue Galaxy (Video Game)
hasFeature
Dynamic Loading / int_ff0f1797
 Dynamic Loading / int_ff9ab17f
type
Dynamic Loading
 Dynamic Loading / int_ff9ab17f
comment
In the Star Trek: The Next Generation episode "Future Imperfect", the Enterprise computer in the false reality has severe lag, and the turbolift temporarily fails. Both are given in-universe explanations, but in reality, they are being used by Riker's captors to give themselves time to make up things on the fly whenever he deviates from what they had expected/prepared.
 Dynamic Loading / int_ff9ab17f
featureApplicability
1.0
 Dynamic Loading / int_ff9ab17f
featureConfidence
1.0
 Star Trek: The Next Generation
hasFeature
Dynamic Loading / int_ff9ab17f
 Dynamic Loading / int_ff9ca30
type
Dynamic Loading
 Dynamic Loading / int_ff9ca30
comment
Metroid Prime 3: Corruption has numerous scenes of Samus's gunship sailing through the air, entering or exiting a planet's atmosphere, or of Samus herself riding a platform, train, or whatever to disguise its loading screens. A bit more varied than simple elevators, but essentially the same idea.
 Dynamic Loading / int_ff9ca30
featureApplicability
1.0
 Dynamic Loading / int_ff9ca30
featureConfidence
1.0
 Metroid Prime 3: Corruption (Video Game)
hasFeature
Dynamic Loading / int_ff9ca30

The following is a list of statements referring to the current page from other pages.

 Tomb Raider (Franchise) / int_d3ce4122
type
Dynamic Loading
 InfinityTheQuestForEarth
seeAlso
Dynamic Loading
 JoveHack
seeAlso
Dynamic Loading
 Tropes A to F / Real Life / int_d3ce4122
type
Dynamic Loading
 Asheron's Call (Video Game) / int_d3ce4122
type
Dynamic Loading
 Batman: Arkham Asylum (Video Game) / int_d3ce4122
type
Dynamic Loading
 Borderlands (Video Game) / int_d3ce4122
type
Dynamic Loading
 Castlevania: Symphony of the Night (Video Game) / int_d3ce4122
type
Dynamic Loading
 Croc (Video Game) / int_d3ce4122
type
Dynamic Loading
 Darksiders (Video Game) / int_d3ce4122
type
Dynamic Loading
 Darksiders (Video Game) / int_d3ce4122
type
Dynamic Loading
 Dead Space 2 (Video Game) / int_d3ce4122
type
Dynamic Loading
 Descent (Video Game) / int_d3ce4122
type
Dynamic Loading
 Diablo II (Video Game) / int_d3ce4122
type
Dynamic Loading
 Digimon World (Video Game) / int_d3ce4122
type
Dynamic Loading
 Doom³ (Video Game) / int_d3ce4122
type
Dynamic Loading
 Dyson Sphere Program (Video Game) / int_d3ce4122
type
Dynamic Loading
 FIFA Soccer (Video Game) / int_d3ce4122
type
Dynamic Loading
 GTFO (Video Game) / int_d3ce4122
type
Dynamic Loading
 God of War (Video Game) / int_d3ce4122
type
Dynamic Loading
 GoldenEye (2010) (Video Game) / int_d3ce4122
type
Dynamic Loading
 GoldenEye Wii (Video Game) / int_d3ce4122
type
Dynamic Loading
 Halo 3: ODST (Video Game) / int_d3ce4122
type
Dynamic Loading
 Hollow Knight (Video Game) / int_d3ce4122
type
Dynamic Loading
 Hook (Video Game) / int_d3ce4122
type
Dynamic Loading
 Indigo Park (Video Game) / int_d3ce4122
type
Dynamic Loading
 Infinity: The Quest for Earth (Video Game)
seeAlso
Dynamic Loading
 Jak and Daxter (Video Game) / int_d3ce4122
type
Dynamic Loading
 Jak and Daxter: The Precursor Legacy (Video Game) / int_d3ce4122
type
Dynamic Loading
 Jak II: Renegade (Video Game) / int_d3ce4122
type
Dynamic Loading
 LEGO Batman (Video Game) / int_d3ce4122
type
Dynamic Loading
 LEGO Batman Trilogy (Video Game) / int_d3ce4122
type
Dynamic Loading
 LEGO Dimensions (Video Game) / int_d3ce4122
type
Dynamic Loading
 LittleBigPlanet (Video Game) / int_d3ce4122
type
Dynamic Loading
 Little Computer People (Video Game) / int_d3ce4122
type
Dynamic Loading
 Luigi's Mansion (Video Game) / int_d3ce4122
type
Dynamic Loading
 Luigi's Mansion 3 (Video Game) / int_d3ce4122
type
Dynamic Loading
 Mass Effect (Video Game) / int_d3ce4122
type
Dynamic Loading
 Metroid: Other M (Video Game) / int_d3ce4122
type
Dynamic Loading
 Metroid Prime (Video Game) / int_d3ce4122
type
Dynamic Loading
 Metroid Prime 2: Echoes (Video Game) / int_d3ce4122
type
Dynamic Loading
 Metroid Prime 3: Corruption (Video Game) / int_d3ce4122
type
Dynamic Loading
 Metroid Prime Trilogy (Video Game) / int_d3ce4122
type
Dynamic Loading
 Pokémon Black and White (Video Game) / int_d3ce4122
type
Dynamic Loading
 Pokémon Red and Blue (Video Game) / int_d3ce4122
type
Dynamic Loading
 Resident Evil 4 (Video Game) / int_d3ce4122
type
Dynamic Loading
 Ridge Racer (Video Game) / int_d3ce4122
type
Dynamic Loading
 Skullgirls (Video Game) / int_d3ce4122
type
Dynamic Loading
 Sonic Colors (Video Game) / int_d3ce4122
type
Dynamic Loading
 Spider-Man: Shattered Dimensions (Video Game) / int_d3ce4122
type
Dynamic Loading
 Spyro: A Hero's Tail (Video Game) / int_d3ce4122
type
Dynamic Loading
 Star Fox Adventures (Video Game) / int_d3ce4122
type
Dynamic Loading
 Star Wars Jedi: Fallen Order (Video Game) / int_d3ce4122
type
Dynamic Loading
 Super Mario 3D World (Video Game) / int_d3ce4122
type
Dynamic Loading
 Super Mario Galaxy (Video Game) / int_d3ce4122
type
Dynamic Loading
 Super Smash Bros. Brawl (Video Game) / int_d3ce4122
type
Dynamic Loading
 Super Smash Bros. for Nintendo 3DS and Wii U (Video Game) / int_d3ce4122
type
Dynamic Loading
 Tales of Graces (Video Game) / int_d3ce4122
type
Dynamic Loading
 The Legend of Zelda (Video Game) / int_d3ce4122
type
Dynamic Loading
 Too Human (Video Game) / int_d3ce4122
type
Dynamic Loading
 Vanquish (Video Game) / int_d3ce4122
type
Dynamic Loading
 Xenoblade (Video Game) / int_d3ce4122
type
Dynamic Loading
 Xenoblade Chronicles 1 (Video Game) / int_d3ce4122
type
Dynamic Loading
 Xenoblade Chronicles X (Video Game) / int_d3ce4122
type
Dynamic Loading
 Elite: Dangerous / Videogame / int_d3ce4122
type
Dynamic Loading
 The Legend of Zelda: The Wind Waker (Video Game) / int_d3ce4122
type
Dynamic Loading
 Masahiro Sakurai on Creating Games (Web Video) / int_d3ce4122
type
Dynamic Loading