Draw

Draw 0.3.0

Author
Exeldro
Downloads
33,117
Views
165,045
First release
Last update
Rating
4.90 star(s) 20 ratings

More resources from Exeldro

Latest updates

  1. Version 0.3.0

    Requires OBS 31.1 or higher Add OBS 32 support
  2. Version 0.2.4

    Add option to have the cursor the same size as the tool Add show and hide vendor events Fix show...
  3. Version 0.2.3

    Add show and hide hotkeys Add always on top option Fix windowed restoring position

Latest reviews

i love it but 2.0 crashes obs when using draw clear hotkey multiple times
Exeldro
Exeldro
Do you mean version 0.2 or 0.3 ? I tried replicating the issue with version 0.3.0, but everything seems to be working fine.
Thanks Exeldro, love it.

Feature request:

Could an arrow be added as an option? Same as the line, but than a line with an arrow point.
Good, but I wish there were a keyboard shortcut to clear all the drawings, instead of having to click the clear icon every time.
It's such a pity that there is no option for a 6th star for implementing the hotkey for DRAW-Show and -Hide.
You're great!!!
I'm 5star- happy with this plugin, could you implement a Hot-Key to start and Stop the Draw Dock?
This would be the 6th star!
Thank you for this tool. I use it now all the time to point at things on the screen, often without actually drawing. Building my own cursor was so easy that I no longer use the rather cumbersome Windows highlight of the cursor.
A minor issue is that the hotkey for “Draw Clear” need to be re-defined again after every restart of OBS. Can this be made persistence? Or did I make a miss something?
Absolutely awesome plugin. I've used it several times every stream since the first release. The Windowed option gives me what I asked about before - so the window doesn't minimise if I minimise OBS, whereas a Dock does.

I wondered if it's possible to enable a lifespan setting of a drawn line? So, if I were to use Pencil I could set a lifespan of the drawn line so it fades out after say, 10 seconds. The Clear button's fine, I just think might be cleaner
Not only was this plugin already good, Exeldro even managed to implement any feedback within a couple of days. This is an awesome and really good alternative to insane expensive tools like telestartor. This is professional production ready.

You can't praise Exceldro enough, he is one of the best, if not the best OBS Plugin developer. Thank you so so much for this awesome work.
with the latest update with stamp and image options for any thing its worth checking it out and for any streamer and its works like a charm

thanks for updating and sharing this plugin 5 out 5
I tried to make a TouchPortal button to activate and disable the dock. can you tell me why it doesn't work?
-----------------------------------------------------------------
obs = obslua

dock_name = "draw-dock" -- Name des Docks in OBS
hotkey_id = obs.OBS_INVALID_HOTKEY_ID

function toggle_dock(pressed)
if not pressed then
return
end
-- Hier keine Abfrage mehr, nur umschalten
print("Dock '" .. dock_name .. "' wird umgeschaltet...")
obs.obs_frontend_set_dock_visibility(dock_name, true) -- Einschalten
obs.timer_add(function() obs.obs_frontend_set_dock_visibility(dock_name, false) end, 50) -- Direkt danach aus
end

function script_description()
return "Hotkey zum Ein-/Ausblenden des Draw-Docks"
end

function script_load(settings)
hotkey_id = obs.obs_hotkey_register_frontend("toggle_dock", "Draw-Dock umschalten", toggle_dock)
if hotkey_id == obs.OBS_INVALID_HOTKEY_ID then
print("Fehler: Hotkey konnte nicht registriert werden!")
return
end

local hotkey_save_array = obs.obs_data_get_array(settings, "toggle_dock")
obs.obs_hotkey_load(hotkey_id, hotkey_save_array)
obs.obs_data_array_release(hotkey_save_array)
print("Hotkey für '" .. dock_name .. "' erfolgreich registriert!")
end

function script_save(settings)
local hotkey_save_array = obs.obs_hotkey_save(hotkey_id)
obs.obs_data_set_array(settings, "toggle_dock", hotkey_save_array)
obs.obs_data_array_release(hotkey_save_array)
end
Exeldro
Exeldro
It does not work because it uses functions that do not exist
Top