Skip to content

Commit

Permalink
DAW#83 PFUI: Gold Knob
Browse files Browse the repository at this point in the history
  • Loading branch information
artiphishle committed Oct 25, 2023
1 parent 8a8e7b4 commit f190b39
Show file tree
Hide file tree
Showing 9 changed files with 504 additions and 433 deletions.
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
"no-loss-of-precision": "off",
"no-magic-numbers": "off",
"no-mixed-operators": "off",
"no-nested-ternary": "off",
"no-plusplus": "off",
"no-shadow": "off",
"no-ternary": "off",
Expand Down
8 changes: 5 additions & 3 deletions src/app/api/(routes)/project/presets/DefaultPreset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import {
DEFAULT_NAME,
DEFAULT_POSITION,
DEFAULT_QUANTIZATION,
DEFAULT_TRACK_INSTRUMENT_BASS,
// DEFAULT_TRACK_AUDIO,
// DEFAULT_TRACK_INSTRUMENT_BASS,
// DEFAULT_TRACK_SAMPLER,
// DEFAULT_TRACK_PLAYERS,
DEFAULT_CHANNEL_DRUMS,
Expand All @@ -20,6 +20,8 @@ import {
DEFAULT_SCALE,
DEFAULT_ACTIVE_TRACK_ID,
DEFAULT_TRACK_OH,
DEFAULT_SWING,
DEFAULT_SWING_SUBDIVISION,
} from '@/constants';

import type { IProjectContext } from '@/types/project.types';
Expand All @@ -35,8 +37,8 @@ const DefaultPreset: IProjectContext = {
position: DEFAULT_POSITION,
quantization: DEFAULT_QUANTIZATION,
states: DEFAULT_STATES,
swing: 0.25,
swingSubdivision: '8n',
swing: DEFAULT_SWING,
swingSubdivision: DEFAULT_SWING_SUBDIVISION,
tracks: [
DEFAULT_TRACK_BD,
DEFAULT_TRACK_SD,
Expand Down
Loading

0 comments on commit f190b39

Please sign in to comment.