We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent31e6e6e commit362becdCopy full SHA for 362becd
Assets/Slua/Editor/LuajitGen.cs
@@ -170,19 +170,19 @@ static void exportLuajit( string res, string ext, string jitluadir, JITBUILDTYPE
170
AssetDatabase.Refresh();
171
}
172
173
-[MenuItem("SLua/luajit/exportluajitx86")]
+[MenuItem("SLua/Compile Bytecode/luajitx86 for WIN32&Android ARMV7")]
174
staticvoidexportLuajitx86()
175
{
176
exportLuajit("Assets/Slua/Resources/","*.txt","Assets/Slua/jit/jitx86",JITBUILDTYPE.X86);
177
178
179
-[MenuItem("SLua/luajit/exportluajitx64")]
+[MenuItem("SLua/Compile Bytecode/luajitx64 for WIN64")]
180
staticvoidexportLuajitx64()
181
182
exportLuajit("Assets/Slua/Resources/","*.txt","Assets/Slua/jit/jitx64",JITBUILDTYPE.X64);
183
184
185
-[MenuItem("SLua/luajit/exportluajitgc64")]
+[MenuItem("SLua/Compile Bytecode/luajitgc64 for MAC&ARM64")]
186
staticvoidexportLuajitgc64()
187
188
exportLuajit("Assets/Slua/Resources/","*.txt","Assets/Slua/jit/jitgc64",JITBUILDTYPE.GC64);
Assets/Slua/example/main.unity
-1.19 KB