mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-06-02 20:04:32 +00:00
41 lines
2.2 KiB
C#
41 lines
2.2 KiB
C#
namespace stonevox
|
|
{
|
|
public static class StatusText
|
|
{
|
|
public const string button_target = "Drag over Matrix to select it\nShortcut - Hold Space";
|
|
public const string button_eyedrop = "Drag over anything to color pick\nShortcut - Hold Shift & Click";
|
|
public const string button_gridoptions = "Voxel Outlining : $(type)\nShortcut - Shift + G\nEnable/Disable - G";
|
|
|
|
public const string button_add = "Add Voxel Tool\nShortcut - B";
|
|
public const string button_remove= "Remove Voxel Tool\nShortcut - F";
|
|
public const string button_recolor= "Recolor Voxel Tool\nShortcut - R";
|
|
public const string button_select = "Select/Move Voxel Tool\nTab - cycle tools";
|
|
public const string button_IO = "Open-Save-Import Files";
|
|
|
|
public const string button_colorpickker_ok = "Alt+Click\nChange color without closing";
|
|
public const string picture_colorpicker_header = "Click and Drag to move color picker";
|
|
public const string button_colorpallete = "Click to Set Active Color\nClick again to open Color Picker";
|
|
|
|
public const string textbox_screenshot_width = "Set's .png Width";
|
|
public const string textbox_screenshot_height = "Set's .png Height";
|
|
|
|
public const string button_save_screenshot = "Save .png";
|
|
public const string button_reset_screeshot_view = "Resets the Camera view";
|
|
public const string button_screenshot_open = "Take a Screenshot";
|
|
|
|
public const string button_undo = "Undo\nShortcut - Z";
|
|
public const string button_redo = "Redo\nShortcut - Y";
|
|
|
|
public const string button_backgroundcolor = "Set Background Color";
|
|
public const string button_floorcolor = "Set Floor Color";
|
|
|
|
public const string label_matrixlistbox = "Click - Sets Active Matrix\nDouble Click - Camera Focus\nClick then F2 - rename Matrix";
|
|
public const string button_matrixvisibiliy = "Toggle Matrix Visibility";
|
|
|
|
public const string button_removematrix = "Removes Currently Active Matrix";
|
|
public const string button_addmatrix = "Add new Matrix";
|
|
|
|
public const string button_nonactivematrixvisibilitytoggle = "Toggle All Non Active Matrix Visiblity\nShortcut - H";
|
|
}
|
|
}
|