This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Copyright (c) 2020 hananoki | |
/// This code is released under NYSL Version 0.9982 | |
/// See http://www.kmonos.net/nysl/NYSL.TXT | |
Unity 2019.3.10f1 | |
/// exporting program | |
var bundle = typeof( EditorGUIUtility ).MethodInvoke<AssetBundle>( "GetEditorAssetBundle" ); | |
var assetNames = bundle.GetAllAssetNames(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Copyright (c) 2020 hananoki | |
/// This code is released under NYSL Version 0.9982 | |
/// See http://www.kmonos.net/nysl/NYSL.TXT | |
using System; | |
using System.Linq; | |
using System.Collections.Generic; | |
using UnityEditor; | |
using UnityEngine; | |
using System.Reflection; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Copyright (c) 2020 hananoki | |
/// This code is released under NYSL Version 0.9982 | |
/// See http://www.kmonos.net/nysl/NYSL.TXT | |
using System; | |
using System.Reflection; | |
public static class UnityEditorJson { | |
static Type s_UnityEditor_Json; | |
static Type UnityEditor_Json { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Copyright (c) 2019 hananoki | |
/// This code is released under NYSL Version 0.9982 | |
/// See http://www.kmonos.net/nysl/NYSL.TXT | |
using UnityEngine; | |
#if UNITY_EDITOR | |
using UnityEditor; | |
using UnityEditorInternal; |