Player can navigate most of the game world from early on; content is gated by player capability, not physical access locks.
Most of the world is reachable from the start; a dangerous zone soft-gates by difficulty, not a wall.
Most of the world is reachable early; difficulty, not locked doors, does the gating. The design is soft pressure — wander in underpowered and the world pushes back.
A large connected world (or galaxy map) kept loaded or streamed. There are no hard access locks — traversal is open from the start.
# One persistent world root; stream chunks in/out
# by distance rather than gating them behind flags.Region triggers set the local danger level instead of blocking entry. Wander into a high-level zone early and the encounters punish you — soft gating.
func _on_body_entered(_b):
EncounterSystem.difficulty = zone_level # not a wallFaction reputation and world flags shape what's available where, layering soft consequences over the open space rather than hard locks.
var reputation := { "hegemony": -20, "traders": 40 }In short: Large connected world or galaxy map; enemy difficulty provides soft gating rather than hard blocked areas
7 catalogued game(s) use this mechanic, spanning 1985–1999.
▶ Explore Open World interactively — see every game + the Godot system