MCPcopy Create free account
hub / github.com/axhlzy/Il2CppHookScripts / parameters

Method parameters

Il2cppHook/_Ufunc.js:11813–11819  ·  view source on GitHub ↗

Gets the parameters of this method.

()

Source from the content-addressed store, hash-verified

11811 }
11812 /** Gets the parameters of this method. */
11813 get parameters() {
11814 return Array.from(Array(this.parameterCount), (_, i) => {
11815 const parameterName = Il2Cpp.Api._methodGetParameterName(this, i).readUtf8String();
11816 const parameterType = Il2Cpp.Api._methodGetParameterType(this, i);
11817 return new Il2Cpp.Parameter(parameterName, i, new Il2Cpp.Type(parameterType));
11818 });
11819 }
11820 /** Gets the relative virtual address (RVA) of this method. */
11821 get relativeVirtualAddress() {
11822 return this.virtualAddress.sub(Il2Cpp.module.base);

Callers

nothing calls this directly

Calls 3

fromMethod · 0.45

Tested by

no test coverage detected