smcs.rsp

作者:追风剑情 发布于:2014-7-28 14:43 分类:Unity3d

创建Unity的预编译文件
在你的Assets目录下面添加smcs.rsp文件,预编译是在启动U3D时候运行的。
示例:
在smcs.rsp中定义两个宏
 -define:MACROS_1

 -define:DEBUG

  1. using UnityEngine;
  2. using System.Collections;
  3.  
  4. public class smcsTest : MonoBehaviour {
  5.  
  6. // Use this for initialization
  7. void Start ()
  8. {
  9. #if MACROS_1
  10. Debug.Log("define MACROS_1");
  11. #else
  12. Debug.Log("No define MACROS_1");
  13. #endif
  14.  
  15. #if DEBUG
  16. Debug.Log("define DEBUG");
  17. #else
  18. Debug.Log("No define DEBUG");
  19. #endif
  20. }
  21. }

运行

运行效果.png

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号