当前位置:   article > 正文

随笔-Unity在编辑器下运行Update_unity editorapplication.update

unity editorapplication.update

 最近在做Editor下的开发,很好奇在Editor下有没有Update,于是在网上查了查。。。 

  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. using UnityEditor;
  6. using System.Reflection;
  7. [InitializeOnLoad]
  8. public class Easy2DeditorUpdate {
  9. static Easy2DeditorUpdate() {
  10. EditorApplication.update += Update;
  11. }
  12. static void Update() {
  13. Debug.Log("");
  14. }
  15. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/141652
推荐阅读
相关标签
  

闽ICP备14008679号