From 7941f20437a44b0d1477534a5efbcf394b60b0d7 Mon Sep 17 00:00:00 2001 From: JannisX11 Date: Tue, 10 Mar 2020 22:19:17 +0100 Subject: [PATCH] 3.4.1 --- .gitignore | 1 + README.md | 15 ++- css/panels.css | 5 + index.html | 3 +- js/animations.js | 1 + js/blockbench.js | 248 +------------------------------------- js/copy_paste.js | 2 +- js/display_mode.js | 1 + js/interface/actions.js | 4 + js/interface/dialog.js | 10 +- js/io/bbmodel.js | 2 +- js/io/gltf.js | 1 + js/io/io.js | 3 +- js/io/java_block.js | 24 ++-- js/io/modded_entity.js | 11 +- js/io/skin.js | 2 +- js/modes.js | 156 ++++++++++++++++++++++++ js/outliner/group.js | 4 +- js/outliner/outliner.js | 2 + js/preview/preview.js | 8 +- js/preview/transformer.js | 18 +-- js/texturing/painter.js | 23 ++-- js/texturing/textures.js | 11 +- js/transform.js | 13 +- lang/de.json | 144 +++++++++++----------- lang/en.json | 2 +- lang/es.json | 144 +++++++++++----------- lang/fr.json | 132 ++++++++++---------- lang/ja.json | 160 ++++++++++++------------ lang/zh.json | 160 ++++++++++++------------ package.json | 2 +- 31 files changed, 622 insertions(+), 690 deletions(-) create mode 100644 js/modes.js diff --git a/.gitignore b/.gitignore index 04c8f0b05..6f1ca902f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /dist/ index.php package-lock.json +node_modules/ \ No newline at end of file diff --git a/README.md b/README.md index 568cd0be5..3391650a6 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,18 @@ # Blockbench -Blockbench is a free, modern model editor for Minecraft Java and Bedrock Edition. +Blockbench is a free, modern model editor for boxy models and pixel art textures. +Models can be exported for Minecraft Java and Bedrock Edition as well as most game engines and other 3D applications. Blockbench features a modern and intuitive UI, plugin support and innovative features. It is the industry standard for creating custom 3D models for the Minecraft Marketplace. -Project and download page: [blockbench.net](https://www.blockbench.net) +Website and download: [blockbench.net](https://www.blockbench.net) ![Interface](https://blockbench.net/wp-content/uploads/2019/07/interface_skidsteer.png) + +## Contribution + +I am not actively using this repository to develop Blockbench. Therefore, I currently won't accept pull requests, sorry! +If you want something implemented in Blockbench, please write a plugin, create an issue labeled [Suggestion], or contact me on Discord. +If you want to Blockbench translations, please visit [blockbench.net/translations](https://blockbench.net/translations/). Thank you! + +## Plugins + +Blockbench supports Javascript-based plugins. Learn more about creating plugins on [jannisx11.github.io/blockbench-docs](https://jannisx11.github.io/blockbench-docs/#creating-a-plugin). diff --git a/css/panels.css b/css/panels.css index 570fc39f2..d7c5d9cde 100644 --- a/css/panels.css +++ b/css/panels.css @@ -992,6 +992,9 @@ cursor: default; pointer-events: none; z-index: 5; + color: white; + mix-blend-mode: difference; + font-weight: 300; } .panel .bar.next_to_title { margin-top: -30px; @@ -1231,5 +1234,7 @@ } .panel#color .sp-container.sp-flat { overflow: visible; + margin: 2px 4px 0 4px; + width: calc(100% - 8px); } diff --git a/index.html b/index.html index 7a2eaa1ed..2774ef9f7 100644 --- a/index.html +++ b/index.html @@ -23,7 +23,7 @@