Successfully reported this slideshow.
Your SlideShare is downloading. ×

基本&ヒント

Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Upcoming SlideShare
基本答え&解説のみ
基本答え&解説のみ
Loading in …3
×

Check these out next

1 of 31 Ad

More Related Content

Recently uploaded (20)

Advertisement

基本&ヒント

  1. 1. https://codeiq.jp/ace/keigo_ando/q471
  2. 2. として保存する
  3. 3. 問題1
  4. 4. 問題1 ヒント
  5. 5. 問題2
  6. 6. 問題2 ヒント1
  7. 7. 問題2 ヒント2
  8. 8. 問題3
  9. 9. 問題3 ヒント1 Event.current.type が EventType.ContextClick のとき void OnGUI() { if (Event.current.type == EventType.ContextClick) { Debug.Log("右クリックされました!"); } }
  10. 10. 問題3 ヒント2 GenericMenuを使用する GenericMenu genericMenu = new GenericMenu(); genericMenu.AddItem(...); genericMenu.ShowAsContext();
  11. 11. 問題4
  12. 12. 問題4 ヒント using UnityEditor; [CustomEditor(typeof(Question4))] public class Question4Inspector : Editor { }
  13. 13. 問題5
  14. 14. 問題5 ヒント
  15. 15. 問題6
  16. 16. 問題6 ヒント using UnityEditor; [CustomEditor(typeof(Question6))] public class Question6Editor : Editor { }
  17. 17. 問題7
  18. 18. 問題7 ヒント using UnityEngine; public class Question7 : ScriptableObject { } ScriptableObjectを継承したクラスを作成する ファイル名とクラス名は同じにすること
  19. 19. 問題8
  20. 20. 問題8 ヒント
  21. 21. 問題9
  22. 22. 問題9ヒント EditorUtility.OpenFilePanel EditorApplication.OpenSceneAdditive
  23. 23. 問題10 https://gist.github.com/anchan828/0b4f811b293967937c3d
  24. 24. 問題10 ヒント

×