版本:Unity 6 (6000.0)
语言英语
  • C#

RuntimePlatform.LinuxEditor

提出建议更改

成功!

感谢您帮助我们改善 Unity 文档的质量。尽管我们无法接受所有反馈,但我们确实阅读用户提出的每一项建议更改,并且会在适用的情况下进行更新。

关闭

提交失败

抱歉,出于某种原因,无法提交您提出的建议更改。请在几分钟后<a>重试</a>。感谢您抽出时间帮助我们提升 Unity 文档质量。

关闭

取消

描述

在 Linux 上的 Unity 编辑器中。

其他资源:RuntimePlatform平台相关编译

using UnityEngine;

public class Example : MonoBehaviour { void Start() { if (Application.platform == RuntimePlatform.LinuxEditor) { Debug.Log("Do something special here!"); } } }