question about the essence of the mod #2
-
that is, this mod is something like a platform for creating mods using datapacks, which will be similar in functionality to regular mods? Or will there be any restrictions? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Sorry for missing the discussion earlier; your understanding is roughly correct. Conium is inspired by Minecraft Bedrock Edition. Unlike Bedrock Edition, Minecraft Java Edition cannot dynamically load items, blocks, or many other game elements. Conium makes this possible. Conium also supports Kotlin scripting. Technically speaking, Kotlin can interact directly with Java, which significantly lowers the limitations of a data-driven approach and eliminates the need to build a JAR file. In summary, the data-driven approach reduces the threshold and cost of mods development, while scripting support complements and extends the limitations of a purely data-driven approach. Bedrock SchemaIf you have read the This is because Minecraft Bedrock Edition has many excellent addons, and Conium aims to run them on Minecraft Java Edition. |
Beta Was this translation helpful? Give feedback.
Sorry for missing the discussion earlier; your understanding is roughly correct.
Conium is inspired by Minecraft Bedrock Edition. Unlike Bedrock Edition, Minecraft Java Edition cannot dynamically load items, blocks, or many other game elements. Conium makes this possible.
Conium also supports Kotlin scripting. Technically speaking, Kotlin can interact directly with Java, which significantly lowers the limitations of a data-driven approach and eliminates the need to build a JAR file.
In summary, the data-driven approach reduces the threshold and cost of mods development, while scripting support complements and extends the limitations of a purely data-driven approach.
Bedrock Schema
If you …