Il2CppDefGeneratorCommand.cs 960 B

123456789101112131415161718192021222324252627282930
  1. using HybridCLR.Editor.Link;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Reflection;
  6. using UnityEditor;
  7. using UnityEngine;
  8. namespace HybridCLR.Editor.Commands
  9. {
  10. public static class Il2CppDefGeneratorCommand
  11. {
  12. [MenuItem("HybridCLR/Generate/Il2CppDef", priority = 104)]
  13. public static void GenerateIl2CppDef()
  14. {
  15. var options = new Il2CppDef.Il2CppDefGenerator.Options()
  16. {
  17. UnityVersion = Application.unityVersion,
  18. HotUpdateAssemblies = SettingsUtil.HotUpdateAssemblyNamesIncludePreserved,
  19. OutputFile = $"{SettingsUtil.LocalIl2CppDir}/libil2cpp/hybridclr/generated/UnityVersion.h",
  20. OutputFile2 = $"{SettingsUtil.LocalIl2CppDir}/libil2cpp/hybridclr/generated/AssemblyManifest.cpp",
  21. };
  22. var g = new Il2CppDef.Il2CppDefGenerator(options);
  23. g.Generate();
  24. }
  25. }
  26. }