-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 5026f9c
Showing
15 changed files
with
151 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/build | ||
/.regolith |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
24
getting-started/packs/BP/entities/frog_statue.behavior.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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": {} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[ | ||
"en_US" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.