UnityEngine.PlaymodeTests.TestAttribute.IncludeOnScene C# (CSharp) Méthode

IncludeOnScene() private méthode

private IncludeOnScene ( string sceneName ) : bool
sceneName string
Résultat bool
        internal bool IncludeOnScene(string sceneName)
        {
            if (string.IsNullOrEmpty(sceneName))
            {
                return false;
            }
            string fileNameWithoutExtension = Path.GetFileNameWithoutExtension(sceneName);
            return (this.m_SceneName == fileNameWithoutExtension);
        }