Skip to content
This repository has been archived by the owner on May 9, 2023. It is now read-only.

Releases: sinai-dev/UnityExplorer

CppExplorer 1.6.0

06 Sep 17:28
Compare
Choose a tag to compare

Changes

  • Fix for failed unstrip with RectOffset(int, int, int, int) ctor
  • Cleanups

Releases

  • CppExplorer.1.6.0.zip for Unity 2019 and newer (uses UnityEngine.InputLegacyModule.dll)
  • CppExplorer.1.6.0.Unity2018.zip for Unity 2018 and older (uses UnityEngine.InputModule.dll)

To check for your game, look in the MelonLoader\Managed\ folder for one of the two DLLs, or check the MelonLoader console when you launch the game to see the Unity version.

CppExplorer 1.5.9

06 Sep 11:34
Compare
Choose a tag to compare

Changes

  • Added beta support for Dictionaries. Should work fine for simple dictionaries, may be janky or broken for more complex ones (eg. Dicts nested inside a Dict).
  • Fixed a bug with Lists of primitive values.

Releases

  • CppExplorer.1.5.9.zip for Unity 2019 and newer (uses UnityEngine.InputLegacyModule.dll)
  • CppExplorer.1.5.9.Unity2018.zip for Unity 2018 and older (uses UnityEngine.InputModule.dll)

To check for your game, look in the MelonLoader\Managed\ folder for one of the two DLLs, or check the MelonLoader console when you launch the game to see the Unity version.

CppExplorer 1.5.8

06 Sep 06:57
Compare
Choose a tag to compare

Changes

  • Fixed a bug where the Page Helper would not update the total page count after changing the limit per page
  • Cleaned up the "Find Instances" helper, it will now filter out all types in the System, Mono, Il2CppSystem and Iced namespaces.
  • Improved the Find Instances helper so that it will avoid exceptions and get more results.
  • Enums now display their value type name
  • Changed the Scroll View unstrip so that it is less hard-coded for different unity versions and more dynamic.

Releases

  • CppExplorer.1.5.8.zip for Unity 2019 and newer (uses UnityEngine.InputLegacyModule.dll)
  • CppExplorer.1.5.8.Unity2018.zip for Unity 2018 and older (uses UnityEngine.InputModule.dll)

To check for your game, look in the MelonLoader\Managed\ folder for one of the two DLLs, or check the MelonLoader console when you launch the game to see the Unity version.

CppExplorer 1.5.7

05 Sep 18:12
Compare
Choose a tag to compare

Changes

  • More fixes for failed unstripping, should fix most issues in Audica and other games
  • If GetRootSceneObjects fails and we fall back to the manual implementation, the auto-update for root scene objects will be disabled. Instead, there will be a button to press to update the list.
  • Transforms are now listed on the Components list in the GameObject inspector
  • Various cleanups

Releases

  • CppExplorer.1.5.7.zip for Unity 2019 and newer (uses UnityEngine.InputLegacyModule.dll)
  • CppExplorer.1.5.7.Unity2018.zip for Unity 2018 and older (uses UnityEngine.InputModule.dll)

To check for your game, look in the MelonLoader\Managed\ folder for one of the two DLLs, or check the MelonLoader console when you launch the game to see the Unity version.

CppExplorer 1.5.6

05 Sep 10:43
Compare
Choose a tag to compare

Changes

  • Added a fallback method for GetRootSceneObjects for games where this fails.
  • Fixed an issue where the new Rect(Rect source) constructor was failing in some games, using the normal ctor now.
  • Added special support for Vector2, Vector3, Vector4, Quaternion, Color and Rect structs in the reflection inspector to allow for easier editing.
  • Several improvements to GameObject Inspector, such as position/rotation freezing, local/global context, and an improved way to edit the transform values.

Edit: releases updated for 1.5.6 hotfix.

Releases

  • CppExplorer.1.5.6.zip for Unity 2019 and newer (uses UnityEngine.InputLegacyModule.dll)

  • CppExplorer.1.5.6.Unity2018.zip for Unity 2018 and older (uses UnityEngine.InputModule.dll)

  • CppExplorer.1.5.7.Unity2018.PRE-RELEASE.zip for testing a new GetRootSceneObjects manual fix.

To check for your game, look in the MelonLoader\Managed\ folder for one of the two DLLs, or check the MelonLoader console when you launch the game to see the Unity version.

CppExplorer 1.5.5

04 Sep 13:51
Compare
Choose a tag to compare

Changes

  • Implemented a fix for Scene.GetRootSceneObjects() failed unstripping by directly calling the native method.
  • Cleaned up a few things with other manual unstripping.

Releases

  • CppExplorer.1.5.5.zip for Unity 2019 and newer (uses UnityEngine.InputLegacyModule.dll)
  • CppExplorer.1.5.5.Unity2018.zip for Unity 2018 and older (uses UnityEngine.InputModule.dll)

To check for your game, look in the MelonLoader\Managed\ folder for one of the two DLLs, or check the MelonLoader console when you launch the game to see the Unity version.

CppExplorer 1.5.4

04 Sep 11:38
Compare
Choose a tag to compare

Changes

  • Implemented manual unstripping for some UnityEngine.GUI methods. This should address the unstripping error (blank menu) for games experiencing that problem. Should allow scrolling and resize-drag for most (if not all) games running Unity 2018 or 2019. Note: Mouse wheel scroll may not work still.
  • Fixed a bug with page view on the Scene Explorer.
  • Back-end cleanups.

Releases

  • CppExplorer.1.5.4.zip for Unity 2019 and newer (uses UnityEngine.InputLegacyModule.dll)
  • CppExplorer.1.5.4.Unity2018.zip for Unity 2018 and older (uses UnityEngine.InputModule.dll)

To check for your game, look in the MelonLoader\Managed\ folder for one of the two DLLs, or check the MelonLoader console when you launch the game to see the Unity version.

CppExplorer 1.5.3

03 Sep 15:28
Compare
Choose a tag to compare

Changes

  • Added exception handling for scroll views when unstripping fails
  • Added some better logging in some places

Releases

  • CppExplorer.1.5.3.zip for Unity versions which use UnityEngine.InputLegacyModule.dll
  • CppExplorer.1.5.3.Unity2018.zip for Unity versions which use UnityEngine.InputModule.dll

To check for your game, look in the MelonLoader\Managed\ folder for one of the two DLLs.

CppExplorer 1.5.2

03 Sep 10:58
Compare
Choose a tag to compare

Changes

  • Added ability to force Reflection Inspector for GameObjects and Transforms if you hold Left Shift while clicking the Inspect button
  • Fixed a bug causing duplicate windows to open when you inspect Transforms, the current active window will now be focused. Note: does not apply if you hold Left Shift for forced reflection.
  • Added page view to GameObject Inspector Children and Component lists
  • Made a generic Page Handler helper class, replaced all page view implementations with the helper (no real change for users but should make things easier to maintain in the future, and they were basically all copy+pastes).

Releases

  • CppExplorer.1.5.2.zip for Unity versions which use UnityEngine.InputLegacyModule.dll
  • CppExplorer.1.5.2.Unity2018.zip for Unity versions which use UnityEngine.InputModule.dll

To check for your game, look in the MelonLoader\Managed\ folder for one of the two DLLs.

CppExplorer 1.5.1

01 Sep 08:05
Compare
Choose a tag to compare

Changes

  • Added support for Properties with an index parameter on the Reflection Window (ie. this[index])
  • Fixed a crash that occured when inspecting Il2CppSystem.Type objects
  • Back-end cleanups

Releases

  • CppExplorer.1.5.1.zip for Unity versions which use UnityEngine.InputLegacyModule.dll
  • CppExplorer.1.5.1.Unity2018.zip for Unity versions which use UnityEngine.InputModule.dll

To check for your game, look in the MelonLoader\Managed\ folder for one of the two DLLs.