Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better instructions for hex grid manual settings. #1558

Merged
merged 1 commit into from
Sep 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ScenesPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ function open_grid_wizard_controls(scene_id, aligner1, aligner2, regrid=function
$(scene_properties).toggleClass('horizontalHex', false);
$('span.squaresWide').text(' hex columns');
$('#additionalGridInfo').toggleClass('closed', false);
$('#gridInstructions').text(`Hex grids currently only have manual options. Count the number of hex columns for sizing. If the hexes on the map are squashed/stretched at all use the minor adjustment sliders.`)
$('#gridInstructions').text(`Hex grids currently only have manual options. Count the number of hex columns for sizing, this can be a decimal. Start by aligning the hexes in the top left of the map with offset. If the hexes on the map are squashed/stretched at all use the minor adjustment sliders. Keeping both sliders at the same value will keep a perfect hex shape if small adjustments are needed after setting number of columns and offset.`)
} else if($(this).val() == 2){
$(scene_properties).toggleClass('verticalHex', false);
$(scene_properties).toggleClass('horizontalHex', true);
Expand All @@ -426,7 +426,7 @@ function open_grid_wizard_controls(scene_id, aligner1, aligner2, regrid=function
});
$('span.squaresTall').text(` hex rows`);
$('#additionalGridInfo').toggleClass('closed', false);
$('#gridInstructions').text(`Hex grids currently only have manual options. Count the number of hex rows for sizing. If the hexes on the map are squashed/stretched at all use the minor adjustment sliders.`)
$('#gridInstructions').text(`Hex grids currently only have manual options. Count the number of hex rows for sizing, this can be a decimal. Start by aligning the hexes in the top left of the map with offset. If the hexes on the map are squashed/stretched at all use the minor adjustment sliders. Keeping both sliders at the same value will keep a perfect hex shape if small adjustments are needed after setting number of rows and offset.`)
} else if($(this).val() == 1){
$(scene_properties).toggleClass('verticalHex', false);
$(scene_properties).toggleClass('horizontalHex', false);
Expand Down