├── .gitignore ├── Assets ├── CustomMethodButton.meta ├── CustomMethodButton │ ├── Attributes.meta │ ├── Attributes │ │ ├── MethodButtonAttribute.cs │ │ └── MethodButtonAttribute.cs.meta │ ├── Editor.meta │ └── Editor │ │ ├── Drawers.meta │ │ └── Drawers │ │ ├── MethodButtonAttributeDrawer.cs │ │ └── MethodButtonAttributeDrawer.cs.meta ├── Demo.meta └── Demo │ ├── Scenes.meta │ ├── Scenes │ ├── MethodButton.unity │ └── MethodButton.unity.meta │ ├── Scripts.meta │ └── Scripts │ ├── ExampleClass.cs │ └── ExampleClass.cs.meta ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Images ├── MethodButtonAttribute.gif └── MethodButtonAttribute2.gif ├── LICENSE ├── Logs └── Packages-Update.log ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/CustomMethodButton.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/Assets/CustomMethodButton.meta -------------------------------------------------------------------------------- /Assets/CustomMethodButton/Attributes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/Assets/CustomMethodButton/Attributes.meta -------------------------------------------------------------------------------- /Assets/CustomMethodButton/Attributes/MethodButtonAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/Assets/CustomMethodButton/Attributes/MethodButtonAttribute.cs -------------------------------------------------------------------------------- /Assets/CustomMethodButton/Attributes/MethodButtonAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/Assets/CustomMethodButton/Attributes/MethodButtonAttribute.cs.meta -------------------------------------------------------------------------------- /Assets/CustomMethodButton/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/Assets/CustomMethodButton/Editor.meta -------------------------------------------------------------------------------- /Assets/CustomMethodButton/Editor/Drawers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/Assets/CustomMethodButton/Editor/Drawers.meta -------------------------------------------------------------------------------- /Assets/CustomMethodButton/Editor/Drawers/MethodButtonAttributeDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/Assets/CustomMethodButton/Editor/Drawers/MethodButtonAttributeDrawer.cs -------------------------------------------------------------------------------- /Assets/CustomMethodButton/Editor/Drawers/MethodButtonAttributeDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/Assets/CustomMethodButton/Editor/Drawers/MethodButtonAttributeDrawer.cs.meta -------------------------------------------------------------------------------- /Assets/Demo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/Assets/Demo.meta -------------------------------------------------------------------------------- /Assets/Demo/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/Assets/Demo/Scenes.meta -------------------------------------------------------------------------------- /Assets/Demo/Scenes/MethodButton.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/Assets/Demo/Scenes/MethodButton.unity -------------------------------------------------------------------------------- /Assets/Demo/Scenes/MethodButton.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/Assets/Demo/Scenes/MethodButton.unity.meta -------------------------------------------------------------------------------- /Assets/Demo/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/Assets/Demo/Scripts.meta -------------------------------------------------------------------------------- /Assets/Demo/Scripts/ExampleClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/Assets/Demo/Scripts/ExampleClass.cs -------------------------------------------------------------------------------- /Assets/Demo/Scripts/ExampleClass.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/Assets/Demo/Scripts/ExampleClass.cs.meta -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Images/MethodButtonAttribute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/Images/MethodButtonAttribute.gif -------------------------------------------------------------------------------- /Images/MethodButtonAttribute2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/Images/MethodButtonAttribute2.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/LICENSE -------------------------------------------------------------------------------- /Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/Logs/Packages-Update.log -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlassToeStudio/UnityMethodButtonAttribute/HEAD/README.md --------------------------------------------------------------------------------