Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 Unity3D 中使用 Objective-C 本机插件为 android 构建?当我按“bıild and run”时它会构建而没有错误,但由于我使用本机插件,因此无法使用模拟器进行测试。我也没有安卓设备。
任何帮助,将不胜感激。
您将能够为 Android 构建,但您将无法在 Android 中使用 iOS 插件。
在我的项目中,我有多个适用于各种平台的插件。通过使用#if UNITY_platform 隔离平台相关代码,其中平台范围从IPHONE 到ANDROID,您可以有效地拥有一个包含多个平台插件的代码库,通过使用依赖注入在该单一代码库中实现功能。