Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Epp-code committed Dec 12, 2024
1 parent 00f0967 commit 1ced4bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ROOT/pages/Development/Cpp/hooking.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ in order to unsubscribe from the function.

== Blueprint-Hooking

Blueprint function hooking works by changing the instructions of a Blueprint UFunction so that your hook gets called at a specific point in the execution of that function. Like native hooks, you can hook before and after the function execution. Unlike native hooks, you can also hook just before top-level statement in the function if you know its original instruction index (which itself requires decompiling the function - look at DEBUG_BLUEPRINT_HOOKING in SML's BlueprintHookManager.cpp for one way to get a JSON dump of the instructions).
Blueprint function hooking works by changing the instructions of a Blueprint UFunction so that your hook gets called at a specific point in the execution of that function. Like native hooks, you can hook before and after the function execution. Unlike native hooks, you can also hook at any top-level statement in the function if you know its original instruction index (which itself requires decompiling the function - look at DEBUG_BLUEPRINT_HOOKING in SML's BlueprintHookManager.cpp for one way to get a JSON dump of the instructions).

[WARNING]
====
Expand Down

0 comments on commit 1ced4bd

Please sign in to comment.