Engine.getPlayHead() Examples?
-
Okay I'm Uncommented These Lines:
/*newPosition*/ //static const Identifier isPlaying("isPlaying"); //ScopedLock sl(getLock()); //hostInfo->setProperty(isPlaying, newPosition.isPlaying);
Compiled Succefully.
And...Is This the Way I Can Recall The Playhead?
Example:if(Engine.getPlayHead().isPlaying ) { // Some Codes Here }
Thanks
-
Okey, I Connected The Play Head to A Simple Gain Module To Check If It Works Correctly:
But Not Sure No Idea if This is Correct Or Not:
if(Engine.getPlayHead().isPlaying ) { PlayHead.setBypassed(1); } else { PlayHead.setBypassed(0); }
Any Help Is such Appreciated
-
Use the TransportHandler I've added a few hours ago.
https://docs.hise.audio/scripting/scripting-api/transporthandler/index.html
-
@Christoph-Hart Thank you Christoph :) God bless you man
Recompiling Now :) -
@Christoph-Hart said in Engine.getPlayHead() Examples?:
e the TransportHandler I've added a few hours ago
Christoph, Do you have a minimal Example Of How to Enable/Disable A Module Based on DAW TransportHandler?
Thank in advance -
@Christoph-Hart
Excellent job :) I Found how :) -
-
@Christoph-Hart Can we now use the gain modulator without latency or mess problem? to create a sidechain effect for example?
-
@Natan Can we use this to get LFOs in sync with FX Plugins?
-
@DanH I Used this for My Graphic Ideas
Not Sure if this can help to sync The LFO Latency :/
@Christoph-Hart