/
TON618OFF
/
Unity-Project-RTU
Обзор
Документация
Войти
/
TON618OFF
/
Unity-Project-RTU
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Library/PackageCache/com.unity.test-framework@1.1.33/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherBuildOptions.cs
23 строки
1 KB
TON618OFF
release
03 окт 2024, 22:20
03 окт 2024, 22:20
7c70e9f
Код
Авторство
О чём код?
using System.Text; namespace UnityEditor.TestTools.TestRunner { internal class PlayerLauncherBuildOptions { public BuildPlayerOptions BuildPlayerOptions; public string PlayerDirectory; public override string ToString() { var str = new StringBuilder(); str.AppendLine("locationPathName = " + BuildPlayerOptions.locationPathName); str.AppendLine("target = " + BuildPlayerOptions.target); str.AppendLine("scenes = " + string.Join(", ", BuildPlayerOptions.scenes)); str.AppendLine("assetBundleManifestPath = " + BuildPlayerOptions.assetBundleManifestPath); str.AppendLine("options.Development = " + ((BuildPlayerOptions.options & BuildOptions.Development) != 0)); str.AppendLine("options.AutoRunPlayer = " + ((BuildPlayerOptions.options & BuildOptions.AutoRunPlayer) != 0)); str.AppendLine("options.ForceEnableAssertions = " + ((BuildPlayerOptions.options & BuildOptions.ForceEnableAssertions) != 0)); return str.ToString(); } } }