Update README.md

This commit is contained in:
Mestima 2022-05-14 15:05:56 +03:00
parent 48c3033e43
commit 05ad366582

View File

@ -46,7 +46,7 @@ func _ready():
`hook.Remove` removes any listening event by its name and type: `hook.Remove` removes any listening event by its name and type:
```gdscript ```gdscript
# can be executed in any place # can be executed at any place
hook.Remove("OnReady", "UniqueName") hook.Remove("OnReady", "UniqueName")
``` ```
@ -54,7 +54,7 @@ hook.Remove("OnReady", "UniqueName")
`hook.GetTable` returns a `Dictionary` with all added listening events `hook.GetTable` returns a `Dictionary` with all added listening events
```gdscript ```gdscript
# can be executed in any place # can be executed at any place
var hookTable: Dictionary = hook.GetTable() var hookTable: Dictionary = hook.GetTable()
``` ```