diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 00000000..e69de29b diff --git a/404.html b/404.html new file mode 100644 index 00000000..06792cbd --- /dev/null +++ b/404.html @@ -0,0 +1,348 @@ + + + +
+ + + + + + + + + + + + + + +This guide provides instructions for creating and updating content packs for version 1 of the LandOfSignals mod, ensuring compatibility and integration with the mod's features and theme.
+A content pack for LandOfSignals V1 should include:
+pack.json
: Contains metadata about the content pack, including name, version, author, and description.assets
: A directory with models, textures, and other necessary assets.Example pack.json
file:
{
+ "name": "My Custom Content Pack",
+ "version": "1.0",
+ "author": "YourName",
+ "description": "A detailed description of your content pack."
+}
+
+Assets should be organized into subdirectories within the assets
folder:
assets/models
: For 3D models of signals and signs.assets/textures
: For textures applicable to the models.To create a custom signal:
+assets
directory accordingly.assets/models
.Example JSON definition for a signal:
+{
+ "id": "custom_signal_v1",
+ "name": "Custom Signal V1",
+ "model": "models/custom_signal_v1.obj",
+ "textures": {
+ "texture": "textures/custom_signal_v1.png"
+ }
+}
+
+After creating your content pack, you can share it with the LandOfSignals community. Include a README file with installation and usage instructions. Join our Discord community for support, feedback, and to share your content packs with other users.
+ + + + + + + + + + + + + +Creating and customizing content packs for LandOfSignals V2 allows mod users to add their own unique signals, signs, and other assets to the game, enhancing the immersive experience with the LandOfSignals theme. This guide will walk you through the process of creating a content pack for version 2 of the mod, ensuring consistency with the LandOfSignals theme.
+A content pack for LandOfSignals V2 consists of a directory containing the following:
+pack.json
: A JSON file containing metadata about the content pack.assets
: A directory containing the models, textures, and other assets for your content pack.The pack.json
file contains metadata about your content pack. Here is an example structure:
{
+ "name": "My Custom Content Pack",
+ "version": "2.0",
+ "author": "YourName",
+ "description": "A description of your content pack, aligned with the LandOfSignals theme."
+}
+
+The assets
directory should contain all the models, textures, and other assets for your content pack. Organize your assets into subdirectories for better management. For example:
assets/models
: Contains the 3D models for your signals and signs.assets/textures
: Contains the textures for your models.To create a signal, you need to:
+assets
directory.assets/models
directory.A signal is defined using a JSON file. Here is an example definition:
+{
+ "id": "custom_signal_v2",
+ "name": "Custom Signal V2",
+ "model": "models/custom_signal_v2.obj",
+ "textures": {
+ "texture": "textures/custom_signal_v2.png"
+ }
+}
+
+Once you have created your content pack, you can share it with the community. Make sure to include a README file with instructions on how to install and use your content pack, ensuring it aligns with the LandOfSignals theme.
+Join our Discord community to share your content packs and get feedback from other users.
+ + + + + + + + + + + + + +Structure and possible entries + contentset
+Difference between BLOCKSIGNAL and BLOCKCOMPLEXSIGNAL.
+Required fields.
+Optional fields.
+How to add flares.
+Required fields.
+Description of groups.
+Syntax of groups.
+How to add flares.
+ + + + + + + + + + + + + +Welcome to the LandOfSignals mod! This guide will walk you through the installation, configuration, and usage of the mod, as well as how to create and use content packs.
+.jar
file into your Minecraft/mods
folder.LandOfSignals comes with various configuration options to tailor the mod to your liking. These can be found in the config/landofsignals.toml
file. Here you can enable or disable specific features and adjust mod settings.
To use the mod, you'll need to familiarize yourself with the different types of signals and tools provided:
+Content packs allow you to add new signals and assets to the game. To create a content pack:
+Minecraft/config/landofsignals/contentpacks
.pack.json
file with your pack's metadata.pack.json
file. Refer to the Content Pack Documentation for detailed instructions.Join our Discord community for support, to share your content packs, or to connect with other users. Our community is always ready to help with any questions or issues you might encounter.
+Thank you for using LandOfSignals!
+ + + + + + + + + + + + + +