mirror of
https://github.com/onyx-and-iris/obsws-ruby.git
synced 2026-04-18 05:23:32 +00:00
reword in readme.
remove brackets
This commit is contained in:
@@ -67,7 +67,9 @@ For a full list of requests refer to [Requests](https://github.com/obsproject/ob
|
||||
|
||||
### Events
|
||||
|
||||
Register blocks with the Event client using the `on` method. The event data will be passed to the block.
|
||||
Register blocks with the Event client using the `on` method. Event tokens should match the event name but snake cased.
|
||||
|
||||
The event data will be passed to the block.
|
||||
|
||||
example:
|
||||
|
||||
@@ -76,10 +78,10 @@ class Observer
|
||||
def initialize
|
||||
@e_client = OBSWS::Events::Client.new(host: "localhost", port: 4455, password: "strongpassword")
|
||||
# register blocks on event types.
|
||||
@e_client.on(:current_program_scene_changed) do |data|
|
||||
@e_client.on :current_program_scene_changed do |data|
|
||||
...
|
||||
end
|
||||
@e_client.on(:input_mute_state_changed) do |data|
|
||||
@e_client.on :input_mute_state_changed do |data|
|
||||
...
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user