mirror of
https://github.com/JannisX11/blockbench.git
synced 2025-02-05 15:50:21 +08:00
Fix #1532 No Translation for Image Format Improve line tool accuracy Texture context menu option to edit in new tab, closes #1533 File > New > Image shortcut, closes #1530 Fix #1529 Brush stroke not connected between mesh faces Cleaner way to display beta version in about dialog Remove template option from Texture Generator in image mode
27 lines
693 B
JavaScript
27 lines
693 B
JavaScript
|
|
new ModelFormat({
|
|
id: 'free',
|
|
icon: 'icon-format_free',
|
|
category: 'low_poly',
|
|
target: ['Blender', 'Unity', 'Unreal Engine', 'Sketchfab'],
|
|
format_page: {
|
|
content: [
|
|
{type: 'h3', text: tl('mode.start.format.informations')},
|
|
{text: `* ${tl('format.free.info.meshes')}
|
|
* ${tl('format.free.info.limitation')}`.replace(/\t+/g, '')
|
|
},
|
|
{type: 'h3', text: tl('mode.start.format.resources')},
|
|
{text: `* [Low-Poly Modeling Tutorial](https://www.youtube.com/watch?v=WbyCbA1c8BM)`}
|
|
]
|
|
},
|
|
meshes: true,
|
|
rotate_cubes: true,
|
|
bone_rig: true,
|
|
centered_grid: true,
|
|
optional_box_uv: true,
|
|
uv_rotation: true,
|
|
animation_mode: true,
|
|
animated_textures: true,
|
|
locators: true,
|
|
})
|