/// <summary> /// Sets the images for each state of the dynamic key. /// </summary> /// <param name="image">Image for the UP state.</param> /// <param name="downImage">Image for the DOWN state.</param> public void Draw(string image, string downImage) { DynamicKeyImageRenderer.Draw(KeyType, image, downImage); }
/// <summary> /// Sets the image for a specific state on this dynamic key. /// </summary> /// <param name="state">The state to set an image for.</param> /// <param name="image">The image file to set.</param> public void Draw(DynamicKeyState state, string image) { DynamicKeyImageRenderer.Draw(KeyType, state, image); }
/// <summary> /// Sets a static image to both states of the dynamic key. /// </summary> /// <param name="image">Path to the image file.</param> public override void Draw(string image) { DynamicKeyImageRenderer.Draw(KeyType, image); }