d764221d63
Signed-off-by: Victor Seiji Hariki <victorseijih@gmail.com>
43 lines
957 B
JavaScript
43 lines
957 B
JavaScript
/**
|
|
* This is a file for static unchanging global configurations.
|
|
*
|
|
* Do NOT confuse with settings, which are modifiable by either the settings menu, or in the application itself.
|
|
*/
|
|
const config = makeReadOnly(
|
|
{
|
|
// Grid Size
|
|
gridSize: 64,
|
|
|
|
// Scroll Tick Limit (How much must scroll to reach next tick)
|
|
wheelTickSize: 50,
|
|
|
|
/** Select Tool */
|
|
// Handle Draw Size
|
|
handleDrawSize: 12,
|
|
// Handle Draw Hover Scale
|
|
handleDrawHoverScale: 1.3,
|
|
// Handle Detect Size
|
|
handleDetectSize: 20,
|
|
// Rotate Handle Distance (from selection)
|
|
rotateHandleDistance: 32,
|
|
|
|
// Rotation Snapping Distance
|
|
rotationSnappingDistance: (10 * Math.PI) / 180,
|
|
// Rotation Snapping Angles
|
|
rotationSnappingAngles: [
|
|
0,
|
|
Math.PI / 4,
|
|
Math.PI / 2,
|
|
(Math.PI * 3) / 4,
|
|
Math.PI,
|
|
(Math.PI * 5) / 4,
|
|
(Math.PI * 6) / 4,
|
|
(Math.PI * 7) / 4,
|
|
Math.PI * 2,
|
|
],
|
|
|
|
// Endpoint
|
|
api: makeReadOnly({path: "/sdapi/v1/"}),
|
|
},
|
|
"config"
|
|
);
|