Skip to content

Commit

Permalink
more modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
averrin committed Jul 4, 2022
1 parent 429c5ee commit bf36dd6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,10 @@ export const modifierSpecs = [

{ id: 'teleportTo', group: 'animation', args: [{ type: 'position', label: 'pos' }, { type: 'bool', label: 'relativeToCenter', option: true }], cat: 'Move' },

{ id: 'volume', group: 'animation', args: [{ type: 'int', label: 'min' }, { type: 'int', label: 'max' }], cat: "Generic" },
{ id: 'fadeInAudio', group: 'animation', args: [{ type: 'int', label: 'ms' }, { type: "ease", label: "ease", option: true }], cat: 'Fade' }, //1500, {ease: "easeOutCubic", delay: 500})
{ id: 'fadeOutAudio', group: 'animation', args: [{ type: 'int', label: 'ms' }, { type: "ease", label: "ease", option: true }], cat: 'Fade' },

//Sound
{ id: 'file', group: 'sound', args: [{ type: 'sound_file', label: 'file' }], cat: "Required" },
{ id: 'volume', group: 'sound', args: [{ type: 'int', label: 'min' }, { type: 'int', label: 'max' }], cat: "Generic" },
Expand Down

0 comments on commit bf36dd6

Please sign in to comment.