Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions source/general/manifest/manifest.3.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
"type": "number",
"description": "This defines the current version of the manifest. Don't change this unless you have a good reason to"
},
"has_education_metadata": {
"title": "Has Education Metadata",
"type": "boolean",
"description": "Indicates whether this pack has education metadata."
},
"capabilities": {
"title": "Capabilities",
"description": "These are the different features that the pack makes use of that aren't necessarily enabled by default.",
Expand Down Expand Up @@ -146,12 +151,22 @@
"type": "string",
"description": "This is the name of the pack as it appears within Minecraft. This is a required field."
},
"pack_optimization_version": {
"title": "Pack Optimization Version",
"$ref": "../Version.json",
"description": "The version of the pack optimization system to use."
},
"pack_scope": {
"title": "Pack Scope",
"type": "string",
"description": "This is the scope of the pack. This is only for resource packs",
"enum": [ "global", "world", "any" ]
},
"platform_locked": {
"title": "Platform Locked",
"type": "boolean",
"description": "Indicates whether this pack is locked to a specific platform."
},
"uuid": {
"title": "UUID",
"$ref": "../UUIDV4.json",
Expand Down Expand Up @@ -277,6 +292,13 @@
"type": "number",
"title": "Memory Tier",
"description": "This creates a requirement on the capacity of memory needed to select the resolution. Each tier increases memory requirement by 256 MB."
},
"memory_performance_tier": {
"type": "integer",
"title": "Memory Performance Tier",
"description": "The performance tier for memory allocation. A value between 0 and 5 that indicates the required memory performance level for this subpack.",
"minimum": 0,
"maximum": 5
}
}
}
Expand Down