UnityEditor.WebCamTextureInspector.OnDisable C# (CSharp) 메소드

OnDisable() 공개 메소드

public OnDisable ( ) : void
리턴 void
        public void OnDisable()
        {
            WebCamTexture target = base.target as WebCamTexture;
            if (!Application.isPlaying && (target != null))
            {
                target.Stop();
            }
        }