HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. tshoats
    3. Topics
    T
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 12
    • Groups 0

    Topics

    • T

      onClock and onTransport Sync To Host Issue

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      2k Views
      T

      Thanks, this did work! Got those properties to work very well. I'm creating a very basic sequencer but the timing is way off. The isPlaying property is working, along with all properties, its just onTimer, and the transport tick/metronome is not syncing together properly. The onTimer should sync with the metronome beat, but its not.. any advice on this?? The below snippet is what im working on

      const var Tempo = Content.addKnob("Tempo", 0, 0); // [JSON Tempo] Content.setPropertiesFromJSON("Tempo", { "max": 10, "mode": "TempoSync", "stepSize": 1 }); Synth.startTimer(Engine.getMilliSecondsForTempo(Tempo.getValue()) / 1000.0); function onTimer(){ if(Engine.getPlayHead().isPlaying ){ if( parseInt(Math.ceil(Engine.getPlayHead().ppqPosition)) == 1){ Synth.playNote(48,127); } if( parseInt(Math.ceil(Engine.getPlayHead().ppqPosition)) == 2){ Synth.playNote(48,127); } if( parseInt(Math.ceil(Engine.getPlayHead().ppqPosition)) == 3){ Synth.playNote(48,127); } if( parseInt(Math.ceil(Engine.getPlayHead().ppqPosition)) == 4){ Synth.playNote(48,127); } Synth.startTimer(Engine.getMilliSecondsForTempo(Tempo.getValue()) / 1000.0); } }
    • T

      VST SDK is missing

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      4k Views
      Adam_GA

      I know this is an old thread, but im getting the same error today after previously exporting without issue. Is this solution still relevant?

    • T

      Possible to create a Step Sequencer Plugin

      Watching Ignoring Scheduled Pinned Locked Moved General Questions sequencer
      6
      1 Votes
      6 Posts
      2k Views
      LindonL

      It would actually be nice if (like Kontakt) HISE had a "send MIDI data out" option...not a showstopper, but nice.