All Projects → sneakyevilSK → IL2CPP_Resolver

sneakyevilSK / IL2CPP_Resolver

Licence: Unlicense license
A run-time API resolver for IL2CPP Unity.

Programming Languages

C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to IL2CPP Resolver

wallet
DeFiChain Wallet. The DeFi Blockchain Light Wallet for iOS, Android & Web. + Desktop Coming Soon
Stars: ✭ 112 (-1.75%)
Mutual labels:  native
scala-native-starter
A starter for scala-native.
Stars: ✭ 27 (-76.32%)
Mutual labels:  native
xUnwind
🔥 xUnwind is a collection of Android native stack unwinding solutions.
Stars: ✭ 127 (+11.4%)
Mutual labels:  native
titanium-speech
Use the iOS 10 SFSpeechRecognizer API in JavaScript with Appcelerator Hyperloop.
Stars: ✭ 21 (-81.58%)
Mutual labels:  native
kafka-consumer-lag-monitoring
Client tool that exports the consumer lag of Kafka consumer groups to Prometheus or your terminal
Stars: ✭ 45 (-60.53%)
Mutual labels:  native
haxeui-hxwidgets
The hxWidgets backend of the HaxeUI framework -
Stars: ✭ 20 (-82.46%)
Mutual labels:  native
MarkdownView
Native markdown rendering on top of Xamarin.Forms & Markdig.
Stars: ✭ 126 (+10.53%)
Mutual labels:  native
react-native-smart-code
Support React & ReactNative.In react-native,it's create base64 String,which is qrcode or barcode ,and without webview.In react,we use jsbarcode.
Stars: ✭ 14 (-87.72%)
Mutual labels:  native
abifestival-app
Cross-platform festival-app built with the Appcelerator Titanium framework
Stars: ✭ 16 (-85.96%)
Mutual labels:  native
anitomy-js
Native Node.js wrapper for Anitomy
Stars: ✭ 21 (-81.58%)
Mutual labels:  native
node-webrtc
🔌 WebRTC bindings for Node, written according to the W3C specification.
Stars: ✭ 23 (-79.82%)
Mutual labels:  native
fabric-samples-nodocker
🌱 Deploy fabric-samples without docker. Currently support v1.4.x & 2.0.x .
Stars: ✭ 35 (-69.3%)
Mutual labels:  native
next-test-api-route-handler
🚀✨ Confidently unit test your Next.js API routes/handlers in an isolated Next.js-like environment
Stars: ✭ 150 (+31.58%)
Mutual labels:  resolver
jest-webpack-resolver
path resolver for jest through the webpack.config. Auto detect webpack's resolve properties like aliases, plugins and more
Stars: ✭ 44 (-61.4%)
Mutual labels:  resolver
SquirrelJME
SquirrelJME is a Java ME 8 Virtual Machine for embedded and Internet of Things devices. It has the ultimate goal of being 99.9% compatible with the Java ME standard.
Stars: ✭ 148 (+29.82%)
Mutual labels:  native
app-monorepo
Secure, open source and community driven crypto wallet runs on all platforms and trusted by millions.
Stars: ✭ 1,282 (+1024.56%)
Mutual labels:  native
microui-odin
A tiny immediate-mode UI library for The Odin Programming Language
Stars: ✭ 24 (-78.95%)
Mutual labels:  native
SilentCryptoMiner
A Silent (Hidden) Free Crypto Miner Builder - Supports ETH, ETC, XMR and many more.
Stars: ✭ 547 (+379.82%)
Mutual labels:  native
react-native-audio-polyfill
Audio polyfill for desktop and native.
Stars: ✭ 13 (-88.6%)
Mutual labels:  native
auth0-android-sample
Auth0 Integration Samples for Android Applications
Stars: ✭ 61 (-46.49%)
Mutual labels:  native

IL2CPP Resolver

A run-time API resolver for IL2CPP Unity.

External Version

Donate

Quick Example

#include "Main.hpp"

void SomeFunction()
{
    IL2CPP::Initialize(); // This needs to be called once!

    Unity::CGameObject* pLocal = Unity::GameObject::Find("LocalPlayer");
    Unity::CComponent* pLocalData = pLocal->GetComponent("PlayerData");
    pLocalData->SetMemberValue<bool>("CanFly", true);
}

Registering OnUpdate Callback

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

void OnLoad()
{
    IL2CPP::Initialize();

    IL2CPP::Callback::Initialize();
    IL2CPP::Callback::OnUpdate::Add(OurUpdateFunction);
}

More: https://sneakyevil.gitbook.io/il2cpp-resolver/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].