👾
IL2CPP Resolver
  • Overview
  • 📦GameObject
    • Find with substring
    • Obtaining list
    • Obtaining Component list
  • 🛠️Utils
    • Usage of field offsets
    • Fetching & filtering classes
    • Fetching class method
  • 🔄Callback
    • OnUpdate
Powered by GitBook
On this page

Was this helpful?

  1. Callback

OnUpdate

void OurUpdateFunction()
{
    // Your special code...
}

void OnLoad()
{
    IL2CPP::Callback::Initialize();
    IL2CPP::Callback::OnUpdate::Add(OurUpdateFunction);
}
PreviousFetching class method

Last updated 3 years ago

Was this helpful?

🔄