- Home /
Using UnityEditor in runtime
Are we allowed to use the namespace UnityEditor in a runtime class? Will any of the UnityEditor methods be available to us on runtime?
Answer by Kryptos · Aug 28, 2012 at 08:25 AM
No you can't. UnityEditor assembly is not loaded at runtime.
Even if you try to do it manually, this will not work as it is dependent on other parts of Unity Editor that will in turn not be available.
Answer by Yanger_Xiaoying · Aug 28, 2012 at 08:32 AM
No, you can't! You can not build your game if using it at runtime. There comes building error when you use it at runtime!
Your answer
Follow this Question
Related Questions
Export objects to a .3DS file at runtime 1 Answer
How to use unityeditor and where I need it? 1 Answer
Instantiate Prefab Problem 1 Answer
How are node.js and unity integrated? 0 Answers
Animation problem 1 Answer