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
| using System.Collections; | |
| using Unity.EditorCoroutines.Editor; | |
| using UnityEditor; | |
| using UnityEngine; | |
| using UnityEngine.Networking; | |
| public static class ImportGoogleSheet | |
| { | |
| const string SHEET_ID = ""; |
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
| // =============================== | |
| // AUTHOR : J. Giezendanner | |
| // CREATE DATE : 12.03.2020 | |
| // MODIFIED DATE : | |
| // PURPOSE : Adds helper functions to the RectTransform to align the rect to the anchors and vise-versa | |
| // SPECIAL NOTES : Sources for certain informations: | |
| // Display anchors gizmos: | |
| // https://forum.unity.com/threads/recttransform-custom-editor-ontop-of-unity-recttransform-custom-editor.455925/ | |
| // Draw default inspector: | |
| // https://forum.unity.com/threads/extending-instead-of-replacing-built-in-inspectors.407612/ |
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
| // =============================== | |
| // AUTHOR : J. Giezendanner | |
| // CREATE DATE : 19.02.2020 | |
| // MODIFIED DATE : | |
| // PURPOSE : Adds a context menu to create a new script on the selected GameObject, and opens the editor to | |
| // edit the script | |
| // SPECIAL NOTES : Inspired by http://answers.unity.com/answers/1007397/view.html | |
| // =============================== | |
| // Change History: | |
| //================================== |
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
| // =============================== | |
| // AUTHOR : J. Giezendanner | |
| // CREATE DATE : 18.02.2020 | |
| // MODIFIED DATE : | |
| // PURPOSE : Adds a context menu to create an Animator Component, Animator Controller | |
| // and Animation to a GameObject in the hierarchy | |
| // SPECIAL NOTES : | |
| // =============================== | |
| // Change History: | |
| //================================== |