From 03ff7320926e88319bae7704706953421e49dece Mon Sep 17 00:00:00 2001 From: WILLATRONIX Date: Sun, 19 May 2024 03:16:02 +0100 Subject: [PATCH] Added tool presets + shape tool --- src/SUMMARY.md | 2 ++ src/editor/toolpresets.md | 7 +++++++ src/tools/drawing/shape.md | 36 ++++++++++++++++++++++++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 src/editor/toolpresets.md create mode 100644 src/tools/drawing/shape.md diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 90dde54..7fd22e3 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -29,6 +29,7 @@ - [Target Info](editor/targetinfo.md) - [History](editor/history.md) - [World Properties](editor/worldproperties.md) + - [Tool Presets](editor/toolpresets.md) - [Tools](tools/intro.md) - [Selection Tools](tools/selection/intro.md) - [Box Select](tools/selection/boxselect.md) @@ -47,6 +48,7 @@ - [Weld](tools/drawing/weld.md) - [Melt](tools/drawing/melt.md) - [Text](tools/drawing/text.md) + - [Shape](tools/drawing/shape.md) - [Heightmap Tools](tools/heightmap/intro.md) - [Elevation](tools/heightmap/elevation.md) - [Slope](tools/heightmap/slope.md) diff --git a/src/editor/toolpresets.md b/src/editor/toolpresets.md new file mode 100644 index 0000000..f74a728 --- /dev/null +++ b/src/editor/toolpresets.md @@ -0,0 +1,7 @@ +## Tool Presets + +Tool Presets allow for easy saving and loading of tool settings and configurations. Tool presets are saved in the axiom configuration at `.minecraft/config/axiom/tool_presets` in NBT format. + +## Saving Presets + +To save presets, first set the configuration of the tool you'd like to save. Clicking the plus icon next to the presets drop-down will display a text field. Here you can name the preset. After clicking save, your preset will appear in the drop-down. \ No newline at end of file diff --git a/src/tools/drawing/shape.md b/src/tools/drawing/shape.md new file mode 100644 index 0000000..9f006b8 --- /dev/null +++ b/src/tools/drawing/shape.md @@ -0,0 +1,36 @@ +## Shape Tool + +The Shape Tool lets you make geometric shapes with your active block. Since these shapes are computed mathematically, they can adjust to any angle and transformation, giving you lots of control over their look. When you 'place' these objects, you can use the gizmo to reposition them and rotate them at any angle. + +Each shape lets you tweak its XZ or XYZ dimensions. In addition to controlling rotation using the gizmo, you can also alter the angle sliders for yaw, pitch, and roll in the 'advanced options' dropdown. Plus, there are options for making the shapes hollow, placing only the outer layer. + +| Shapes      | +|-------------| +| Sphere      | +| Cuboid      | +| Octahedron  | +| Supersphere | +| Cylinder    | +| Tube        | +| Cone        | +| Pyramid     | +| Dodecahedron| +| Icosahedron | + +| Option       | Description                                                       | +|--------------|-------------------------------------------------------------------| +| Separate XYZ | When enabled, all three scale axes can be modified separately.    | +| Diameter     | This slider controls the size or scale of the selected shape.     | +| Advanced     | Allows you to directly alter the yaw, pitch and roll via sliders. | + +| Modifier | Description                           | +|----------|---------------------------------------| +| Hollow   | Generates the shape filled with air   | +| Metaball | Applies a melting effect to the shape | + +| Placement           | Description                                                 | +|---------------------|-------------------------------------------------------------| +| Gizmo               | Switch between a global or local [gizmo](/editor/gizmos.md) | +| Pivot               | Switch between centred gizmo or base gizmo position | + +**Keep Existing** Disables the overriding of other blocks when placing the shape. \ No newline at end of file