Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nusiq committed Dec 14, 2024
0 parents commit 5026f9c
Show file tree
Hide file tree
Showing 15 changed files with 151 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# About
This repository contains resources needed to complete the tutorials from the [Regolith Documentation](regolith-docs.readthedocs.io/en/). The resources are organized by tutorial. They can be downloaded from the release pages of this repository.

## Contents
- `getting-started` - Contains the fully finished code for the Getting Started tutorial.
2 changes: 2 additions & 0 deletions getting-started/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/build
/.regolith
1 change: 1 addition & 0 deletions getting-started/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This is the product of finishing the Getting Started tutorial from the [Regolit Documentation](regolith-docs.readthedocs.io/en/).
33 changes: 33 additions & 0 deletions getting-started/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"$schema": "https://raw.githubusercontent.com/Bedrock-OSS/regolith-schemas/main/config/v1.4.json",
"author": "Bedrock-OSS",
"name": "regolith-getting-started",
"packs": {
"behaviorPack": "./packs/BP",
"resourcePack": "./packs/RP"
},
"regolith": {
"dataPath": "./packs/data",
"filterDefinitions": {
"texture_list": {
"url": "github.com/Bedrock-OSS/regolith-filters",
"version": "1.1.3"
}
},
"formatVersion": "1.4.0",
"profiles": {
"default": {
"export": {
"build": "standard",
"readOnly": false,
"target": "development"
},
"filters": [
{
"filter": "texture_list"
}
]
}
}
}
}
24 changes: 24 additions & 0 deletions getting-started/packs/BP/entities/frog_statue.behavior.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"format_version": "1.20.80",
"minecraft:entity": {
"description": {
"identifier": "bedrockoss:frog_statue",
"is_spawnable": true,
"is_summonable": true
},
"components": {
"minecraft:health": {
"value": 1,
"max": 1
},
"minecraft:collision_box": {
"height": 1,
"width": 1
},
"minecraft:type_family": {
"family": ["inanimate"]
},
"minecraft:physics": {}
}
}
}
27 changes: 27 additions & 0 deletions getting-started/packs/BP/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"format_version": 2,
"header": {
"description": "pack.description",
"name": "pack.name",
"uuid": "3356ff0d-f4f3-4c6d-9838-dc53eb576cdf",
"pack_scope": "world",
"version": [1, 0, 0],
"min_engine_version": [1, 21, 30]
},
"modules": [
{
"type": "data",
"uuid": "fdc75f28-7eaf-4e5c-9781-e3a201aea4a2",
"version": [1, 0, 0]
}
],
"dependencies": [
{
"uuid": "001e5085-2f93-4c41-94a0-f74b9e577d89",
"version": [1, 0, 0]
}
],
"metadata": {
"product_type": "addon"
}
}
Binary file added getting-started/packs/BP/pack_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions getting-started/packs/BP/texts/en_US.lang
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pack.name=Regolith Getting Started
pack.description=The "Getting Started" tutorial from Regolith documentation.
3 changes: 3 additions & 0 deletions getting-started/packs/BP/texts/languages.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[
"en_US"
]
22 changes: 22 additions & 0 deletions getting-started/packs/RP/entity/frog_statue.entity.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"format_version": "1.10.0",
"minecraft:client_entity": {
"description": {
"identifier": "bedrockoss:frog_statue",
"materials": {
"default": "entity_alphatest"
},
"textures": {
"default": "textures/entity/frog_statue"
},
"geometry": {
"default": "geometry.frog"
},
"render_controllers": ["controller.render.default"],
"spawn_egg": {
"base_color": "#757575",
"overlay_color": "#303030"
}
}
}
}
27 changes: 27 additions & 0 deletions getting-started/packs/RP/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"format_version": 2,
"header": {
"description": "pack.description",
"name": "pack.name",
"uuid": "001e5085-2f93-4c41-94a0-f74b9e577d89",
"pack_scope": "world",
"version": [1, 0, 0],
"min_engine_version": [1, 21, 30]
},
"modules": [
{
"type": "resources",
"uuid": "356be28b-df26-4c6e-91e4-5b5e0e5a8a61",
"version": [1, 0, 0]
}
],
"dependencies": [
{
"uuid": "3356ff0d-f4f3-4c6d-9838-dc53eb576cdf",
"version": [1, 0, 0]
}
],
"metadata": {
"product_type": "addon"
}
}
Binary file added getting-started/packs/RP/pack_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions getting-started/packs/RP/texts/en_US.lang
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pack.name=Regolith Getting Started
pack.description=The "Getting Started" tutorial from Regolith documentation.
3 changes: 3 additions & 0 deletions getting-started/packs/RP/texts/languages.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[
"en_US"
]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 5026f9c

Please sign in to comment.