MCreator 2022.2 - /add new features

Published by Klemen on
MCreator 2022.2 - Command arguments, projectile and blockstate procedures, java plugins, and more!

MCreator 2022.2, a feature update, is here. It adds tons of new interesting stuff, such as command parameters, many new procedures, java plugins, and much more. Read on!

Command parameters

One of the biggest new features in this update is command parameters. With them, you can define what type and number of arguments your command accept, and in what order. This also enables autocomplete on custom commands. Check out the video below to see an example of custom command arguments in action.

MCreator new command arguments system in action

Below you can find the list of all currently supported command argument parameters, which include different types of number, text, entity, block, item, and block position parameters.

All currently available command arguments in MCreator Minecraft mod maker

Projectile procedures

Another big feature, especially given how much this was requested in the past, is much more customizable projectile procedures. Now you can not only also shoot different arrow types, fireballs, and throwables. And not only that, one can now specify parameters of the projectile in much more detail, and also shoot projectiles from non-entity sources. This means you can now make blocks that shoot projectiles, for example, without having to involve an entity in the process.

New projectile and ranged item procedures in MCreator Minecraft mod maker

Java plugins

Another really big feature that will grow with time is Java plugins. If one enables Java plugins (for safety reasons, as Java plugins have full access to MCreator and to the computer), those plugins can deeply integrate with MCreator. This includes, but is not limited to adding new menu and toolbar items, mod elements, and much more. With this feature and features built around this in the future, plugins will be able to extend MCreator in ways not imaginable before.

Support for advanced plugins written in Java for MCreator Minecraft mod maker

New texture types

Another neat feature is new texture types. Now all textures that are not block, item, or armor will not be the other type of texture, but the right texture for the category such as screens, potion effects, particles, and entities. Existing textures will be sorted into new categories for you, but will still be also kept in the other textures category just in case you still use that texture for other purposes too.

New texture types in MCreator

Item extensions

We have added one new mod element in this release: item extensions. This mod element will be replacing the fuel mod element and dispenser behavior settings of custom items. The existing setup will be migrated for you.

Item extension allows one to extend the behavior of existing vanilla items or custom items. You can specify any item to be fuel, with an optional condition for smelting success and dynamic power options, make any item compostable, and make any item have custom dispense behavior in dispensers.

New item extension mod element to add new functions to existing items

Plant improvements

Plants got some attention too. The first change is that now plants can now be marked as solid, which will prevent entities from freely passing through them.

Solid plant option

Two new plant procedure triggers were added too: projectile hits the plant, entity walked on the plant. Projectile hits procedure trigger was added to the block mod element too.

New item procedure triggers

Block improvements

Alongside the new procedure trigger, blocks got some other new features too. One of them is the checkbox "Requires the correct tool for drops?", which makes the block still drop the item even if the harvest level of the tool is too low, but harvesting takes longer. This makes it possible to make more realistic logs that can be harvested by hand too, but much slower than when the correct tool is used.

More refined harvest settings for custom block mod element in MCreator

Another new feature is to enable block attachment face support, which allows pitch rotation around the axe the block was placed on. This feature then works in combination with the horizontal rotation types. This makes the block act the way eg. levers, buttons, or grindstones operate.

Option to define attachment faces in MCreator for custom blocks

Entity improvements

Entities got a new parameter, that is follow range, which defines how far the entities follow another entity when following or attacking that entity. As there are many parameters on the properties section, we have re-arranged the UI a bit to make it more clear.

New follow range parameter and improved entity editor UI in MCreator

Blockstate procedures

Quite a big new feature is also blockstate procedures. With those procedures, you can get, set, and add blockstate parameters to any block in the game. With this feature, you can do things such as check the cauldron level or fill it, rotate blocks, check and set the growth stages of plants and much more. You can set and get any integer, boolean, and enum property of any block.

New blockstate management procedures in MCreator

Other new procedure blocks

We have added some other new procedure blocks too. This also includes new text management procedure blocks that check if the text is empty, trim text, can uppercase or lowercase it and can check if the string starts or ends with a certain substring.

New text manipulation procedure blocks

We have also added some new passenger-related procedures that allow you to get passengers of the entity, indirect passengers of the entity, passenger that is controlling the entity, and the lowest entity in the stack of passengers.

New entity riding-related procedure blocks

Release notes

  • Added 4 new texture categories: entities, effects, particles, and screens. Existing workspaces will be converted to new categories automatically.
  • Removed fuel mod element (replaced by the new item extension mod element). Existing fuel mod elements will be converted to item extensions automatically.
  • Removed custom item dispense behavior settings (replaced by the new item extension mod element). Existing item mod element dispense behavior settings will be converted to item extensions automatically.
  • Replaced current shoot ranged item procedure block with new projectile procedure blocks
  • [Plugins] Replaced some of the custom Blockly extensions with a new field type
  • [Plugins] Added a new template type for command arguments

Important bug fixes

Many bugs were fixed in this update. All the bug fixes are listed in the list below, but more notable bug fixes are:

  • [Bugfix, FG 1.16.5] Mega spruce trees in custom biomes crashed the world generation
  • [Bugfix] Command actions did not run when called from a command block
  • [Bugfix] Some dialog windows in image maker froze the UI on macOS in some cases
  • [Bugfix] AI task editor was disabled in the add-on generator
  • [Bugfix] Checkboxes in custom GUIs had too big of a click region

Other improvements

The article would be too long if we described all the changes and bug fixes in-depth, so you can see the full list in the full changelog of this release here (some more notable features that were not mentioned previously are highlighted with bold text):

  • Updated Blockly to 2022 Q1 Patch 2
  • Updated bundled Java to version OpenJDK 17.0.3
  • Added new Java plugins system for more advanced MCreator plugins
  • Added some new tags to the common tags tool
  • Added blockstate management procedure blocks to universally read, write and modify block states
  • Added requires correct tool option for blocks
  • Added is solid option for plants
  • Added new block triggers: projectile hits the block
  • Added new plant triggers: projectile hits the plant, entity walked on the plant
  • Added new command argument builder with Blockly editor
  • Added new command argument types: number, logic, string, literal, block position, entity, item, block state, message
  • Added procedure blocks to read specific command arguments
  • Added support for adding custom trades to wandering traders
  • Added custom block pitch rotation support
  • Spawn entity procedure blocks and biome selectors now only show spawnable entities
  • Added duplicate layer button to the image editor
  • Added some more block and plant tint types
  • Added new mod element type: item extension
  • Added follow range parameter to living entity mod element
  • Added support to switch between Minecraft Forge and Fabric generators
  • Scoreboard procedures now work with all entities, not just players
  • Added new projectile procedure blocks: shoot a projectile from the entity, shoot a projectile at a location with direction, added arrow, fireball, and throwable projectile definition blocks
  • Added new entity procedures: for each passenger, for each direct passenger, get passenger that is controlling entity, and get lowest ridden entity, is in wall, get remaining ticks on fire, is sleeping, is glowing, is swimming
  • Added new text procedures: is text empty, trim text, uppercase text, lowercase text, does text start/end with
  • Added four new texture categories: entities, screens, effects, and particles
  • [Bugfix, FG 1.16.5] Mega spruce trees in custom biomes crashed the world generation
  • [Bugfix, FG 1.16.5] When custom projectile hits block procedure trigger executed twice
  • [Bugfix] Fixed common tags tool dirt tag using the wrong namespace
  • [Bugfix] Command actions did not run when called from a command block
  • [Bugfix] Some dialog windows in image maker froze the UI on macOS in some cases
  • [Bugfix] AI task editor was disabled in the add-on generator
  • [Bugfix] Food mod element failed to properly convert to the item in some cases
  • [Bugfix] Checkboxes in custom GUIs had too big of a click region
  • [Bugfix] Custom slots did not look the same as vanilla slots
  • [Bugfix] On GUI closed procedure was not called on non-slot custom GUIs
  • [Bugfix] Removed some unnecessary generated code in some cases
  • [Bugfix] Some other minor fixes and improvements

Feature overview video

If you would like to see all the most important features of the 2022.2 update collected in a video made by our contributors Goldorion and NorthWestTrees, check it out below.

Thanks to all the contributors

Big thanks to the people who opened all the PRs that made this update that huge, to the people who reported issues, and looked for bugs, thanks to translators and proofreaders, tutorial makers, and everyone involved in the community!

Tell us what you think about the update (and what your favorite new feature or bug fix is) in the comments! We are already looking forward to all new mods utilizing new features from this update :) If you like what we do, consider donating to help us keep this project up.

 

UPDATE: We have released a patch update to fix some bugs found in the 2022.2 release:

2022.2.34517:

  • [Bugfix, FG 1.16.5] Dispense output and compost layer chance parameters in item extension mod element did not work
  • [Bugfix] Some other minor fixes and improvements

To install the patch, re-download 2022.2 and install it again. Make sure to uninstall the current version first.

Share this on:

Comments

Something I'd adore to see is the ability to simply change the texture of a block, item, and entity instead of having to change it completely. Would be super helpful for making more block animations or make mobs change when you do something to them, like shearing a sheep makes it visually lose its wool.

Your efforts for Mcreator over the past year have been truly admirable. If possible, please maintain 1.16.5 more, it is really a very popular version! Since 1.18, the game's optimization is really bad! I believe this will make Mcreator more popular with gamers!

You are welcome! 1.16.5 is no longer supported by Forge, and generated code for this version in MCreator is not comparable to what we have now, so we will drop support for 1.16.5, but there will surely be third-party plugins supporting this version.

suggestion for 2022.3: custom material types. makes a custom material for easy acsess of sound packs and etc properties

oh my. i cant wait to do alot of stuff with this! also commands are 723657326576357263576237856765723865723657x better now

We have released a patch update to fix some bugs found in the 2022.2 release:

2022.2.34517:
- [Bugfix, FG 1.16.5] Dispense output and compost layer chance parameters in item extension mod element did not work
- [Bugfix] Some other minor fixes and improvements

To install the patch, re-download 2022.2 and install it again. Make sure to uninstall the current version first.

Can you provide all mob models of the original version (1.16.5)? It can also be made into a plug-in

the update is great, i just want to ask will leaving the follow range as default 0 affect my hostile mob? i am worried that the mob might not follow the player if i leave it as 0

Pls add in Mcreator on version 2022.3 to make riderable mob can movement like

boat in vanilla minecraft or Mcreator can make a boat🙏

Submitted by Faruk Arda on Wed, 08/17/2022 - 02:13 Permalink

Are we going to be getting something about biomes in this update. Such as a custom water biome. Also custom caves for custom biomes. And can we also get custom trades for custom mobs.



Donate to MCreator

By donating to developers you can speed up development, as with more resources, we can dedicate more time to MCreator. It is a free project made by developers working on it in their free time.