Forum
    • Categories
    • Register
    • Login
    1. Home
    2. Mors
    3. Best
    • Profile
    • Following 0
    • Followers 1
    • Topics 19
    • Posts 71
    • Groups 0

    Posts

    Recent Best Controversial
    • Free delay notations time filmstrip!

      As a thank you for all the help this forum has given me I've made this little filmstrip showing notations of a delay from a new plugin i'm working on based off the scriptnodes tempo sync!

      Thought it might come in handy for some of you!

      Download - https://drive.google.com/file/d/1mplQhjoah7leJuufZ27KcN3A626qGjEp/view?usp=sharing

      ezgif-3-fd2c541df4.gif

      posted in Presets / Scripts / Ideas
      MorsM
      Mors
    • RE: tempo_sync module 1/1 out of time < 160 odd bpm?

      @Mors Update: I used a faust delay instead of hise template feedback delay, works like a charm!

      posted in ScriptNode
      MorsM
      Mors
    • RE: I don’t know anything about scripting. Is HISE for me?

      @pgaudioworks here's the link to the launch video on my instagram! - https://www.instagram.com/reel/C4f61tTMwPB/?utm_source=ig_web_button_share_sheet&igsh=MzRlODBiNWFlZA==

      posted in General Questions
      MorsM
      Mors
    • RE: I don’t know anything about scripting. Is HISE for me?

      @pgaudioworks Of course it's for you! I started on HISE 2 months ago, absolutely 0 coding knowldege, 0 plugin making knowledge and just last week released my first ever plugin that has been a hit.

      As long as your open to learning you'll be fine, this forum is incredibly helpful as well!

      posted in General Questions
      MorsM
      Mors
    • RE: Codesign error on Mac, what am I missing?

      @HISEnberg I followed this guide - https://developer.apple.com/documentation/xcode/sharing-your-teams-signing-certificates

      created it and then exported it

      posted in General Questions
      MorsM
      Mors
    • RE: Effect stops working when UI closed

      @David-Healey Oh awesome, thanks for letting me know!

      posted in General Questions
      MorsM
      Mors
    • RE: Effect stops working when UI closed

      @David-Healey That was it! I just to make it synchronous, thank you!

      Here's the updated code if anyone ever has the same problem:

      const var HardcodedMasterFX1 = Synth.getEffect("HardcodedMasterFX1");
      
      const var handler = Engine.createTransportHandler();
      
      inline function onTransportChange(playing)
      {
          HardcodedMasterFX1.setAttribute(HardcodedMasterFX1.gate, playing ? 1 : 0);
          HardcodedMasterFX1.setAttribute(HardcodedMasterFX1.switchy, playing ? 1 : 0);
      }
      
      handler.setOnTransportChange(true, onTransportChange);
      
      posted in General Questions
      MorsM
      Mors